{"id":2403,"date":"2025-01-14T14:12:45","date_gmt":"2025-01-14T13:12:45","guid":{"rendered":"https:\/\/lechateaudenamur.kiff.agency\/?page_id=2403"},"modified":"2025-06-05T09:44:28","modified_gmt":"2025-06-05T07:44:28","slug":"contact","status":"publish","type":"page","link":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"\n<section class=\"block-map wrapper-padding-top-no-espace wrapper-padding-bottom-no-espace \">\n\n  <div class=\"wrapper\">\n\n    <div class=\"acf-map\" data-zoom=\"16\">\n       <div class=\"marker\" data-lat=\"50.4547604\" data-lng=\"4.8556192\"><\/div>\n   <\/div>\n\n  <\/div>\n\n<\/section>\n\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyB-Jk2a2KNTZq_LiKdiaTh_vTxW5jhrgwk&#038;callback=Function.prototype\"><\/script>\n<script type=\"text\/javascript\">\n(function( $ ) {\n\n\/**\n * initMap\n *\n * Renders a Google Map onto the selected jQuery element\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @return  object The map instance.\n *\/\nfunction initMap( $el ) {\n\n  var mapStyles = [\n    {\n      \"featureType\": \"water\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#e9e9e9\"\n        },\n        {\n          \"lightness\": 17\n        }\n      ]\n    },\n    {\n      \"featureType\": \"landscape\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#f5f5f5\"\n        },\n        {\n          \"lightness\": 20\n        }\n      ]\n    },\n    {\n      \"featureType\": \"road.highway\",\n      \"elementType\": \"geometry.fill\",\n      \"stylers\": [\n        {\n          \"color\": \"#ffffff\"\n        },\n        {\n          \"lightness\": 17\n        }\n      ]\n    },\n    {\n      \"featureType\": \"road.highway\",\n      \"elementType\": \"geometry.stroke\",\n      \"stylers\": [\n        {\n          \"color\": \"#ffffff\"\n        },\n        {\n          \"lightness\": 29\n        },\n        {\n          \"weight\": 0.2\n        }\n      ]\n    },\n    {\n      \"featureType\": \"road.arterial\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#ffffff\"\n        },\n        {\n          \"lightness\": 18\n        }\n      ]\n    },\n    {\n      \"featureType\": \"road.local\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#ffffff\"\n        },\n        {\n          \"lightness\": 16\n        }\n      ]\n    },\n    {\n      \"featureType\": \"poi\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#f5f5f5\"\n        },\n        {\n          \"lightness\": 21\n        }\n      ]\n    },\n    {\n      \"featureType\": \"poi.park\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#dedede\"\n        },\n        {\n          \"lightness\": 21\n        }\n      ]\n    },\n    {\n      \"elementType\": \"labels.text.stroke\",\n      \"stylers\": [\n        {\n          \"visibility\": \"on\"\n        },\n        {\n          \"color\": \"#ffffff\"\n        },\n        {\n          \"lightness\": 16\n        }\n      ]\n    },\n    {\n      \"elementType\": \"labels.text.fill\",\n      \"stylers\": [\n        {\n          \"saturation\": 36\n        },\n        {\n          \"color\": \"#333333\"\n        },\n        {\n          \"lightness\": 40\n        }\n      ]\n    },\n    {\n      \"elementType\": \"labels.icon\",\n      \"stylers\": [\n        {\n          \"visibility\": \"off\"\n        }\n      ]\n    },\n    {\n      \"featureType\": \"transit\",\n      \"elementType\": \"geometry\",\n      \"stylers\": [\n        {\n          \"color\": \"#f2f2f2\"\n        },\n        {\n          \"lightness\": 19\n        }\n      ]\n    },\n    {\n      \"featureType\": \"administrative\",\n      \"elementType\": \"geometry.fill\",\n      \"stylers\": [\n        {\n          \"color\": \"#fefefe\"\n        },\n        {\n          \"lightness\": 20\n        }\n      ]\n    },\n    {\n      \"featureType\": \"administrative\",\n      \"elementType\": \"geometry.stroke\",\n      \"stylers\": [\n        {\n          \"color\": \"#fefefe\"\n        },\n        {\n          \"lightness\": 17\n        },\n        {\n          \"weight\": 1.2\n        }\n      ]\n    }\n  ];\n\n    \/\/ Find marker elements within map.\n    var $markers = $el.find('.marker');\n\n    \/\/ Create gerenic map.\n    var mapArgs = {\n        styles      : mapStyles,\n        zoom        : $el.data('zoom') || 16,\n        mapTypeId   : google.maps.MapTypeId.ROADMAP\n    };\n    var map = new google.maps.Map( $el[0], mapArgs );\n\n    \/\/ Add markers.\n    map.markers = [];\n    $markers.each(function(){\n        initMarker( $(this), map );\n    });\n\n    \/\/ Center map based on markers.\n    centerMap( map );\n\n    \/\/ Return map instance.\n    return map;\n}\n\n\/**\n * initMarker\n *\n * Creates a marker for the given jQuery element and map.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   jQuery $el The jQuery element.\n * @param   object The map instance.\n * @return  object The marker instance.\n *\/\nfunction initMarker( $marker, map ) {\n\n    \/\/ Get position from marker.\n    var lat = $marker.data('lat');\n    var lng = $marker.data('lng');\n    var latLng = {\n        lat: parseFloat( lat ),\n        lng: parseFloat( lng )\n    };\n\n    \/\/ Create marker instance.\n    var marker = new google.maps.Marker({\n        position : latLng,\n        map: map,\n        icon: {\n            url: 'https:\/\/lechateaudenamur.kiff.agency\/wp-content\/themes\/chateaudenamurtwentyfive\/dist\/images\/mdpi\/maps-and-flags.png', \/\/ Remplace par l'URL de ton ic\u00f4ne\n            scaledSize: new google.maps.Size(40, 40) \/\/ Ajuste la taille si n\u00e9cessaire\n            }\n\n    });\n\n    \/\/ Append to reference for later use.\n    map.markers.push( marker );\n\n    \/\/ If marker contains HTML, add it to an infoWindow.\n    if( $marker.html() ){\n\n        \/\/ Create info window.\n        var infowindow = new google.maps.InfoWindow({\n            content: $marker.html()\n        });\n\n        \/\/ Show info window when marker is clicked.\n        google.maps.event.addListener(marker, 'click', function() {\n            infowindow.open( map, marker );\n        });\n    }\n}\n\n\/**\n * centerMap\n *\n * Centers the map showing all markers in view.\n *\n * @date    22\/10\/19\n * @since   5.8.6\n *\n * @param   object The map instance.\n * @return  void\n *\/\nfunction centerMap( map ) {\n\n    \/\/ Create map boundaries from all map markers.\n    var bounds = new google.maps.LatLngBounds();\n    map.markers.forEach(function( marker ){\n        bounds.extend({\n            lat: marker.position.lat(),\n            lng: marker.position.lng()\n        });\n    });\n\n    \/\/ Case: Single marker.\n    if( map.markers.length == 1 ){\n        map.setCenter( bounds.getCenter() );\n\n    \/\/ Case: Multiple markers.\n    } else{\n        map.fitBounds( bounds );\n    }\n}\n\n\/\/ Render maps on page load.\n$(document).ready(function(){\n    $('.acf-map').each(function(){\n        var map = initMap( $(this) );\n    });\n});\n\n})(jQuery);\n<\/script>\n\n\n<section  class=\"content-1-1 wrapper-padding-top-large wrapper-padding-bottom-no-espace\" >\n\n  <div class=\"wrapper\">\n\n    \n      <article class=\"content-1-1__item text col-md-6 col-sm-12 col-12 animated-fade-to-top\">\n\n\n        \n          \n          <div class=\"content animated fade-to-top\">\n            <h2>Contact us<\/h2>\n<p>&nbsp;<\/p>\n<h3>Our contact details<\/h3>\n<p>&nbsp;<\/p>\n<p>Avenue de l&#8217;Ermitage, 1<br \/>\nB-5000 Namur &#8211; BELGIQUE<\/p>\n<p><strong>T\u00e9l. :<\/strong> <a href=\"tel:003281729900\">+32 (0)81 72 99 00<\/a><br \/>\n<strong>Fax :<\/strong> +32 (0)81 72 99 99<\/p>\n<p><strong>e-mail :<\/strong> <a href=\"mailto:info@chateaudenamur.com\">info@chateaudenamur.com<\/a><\/p>\n<p>&nbsp;<\/p>\n<h3>Send a message<\/h3>\n<p>&nbsp;<\/p>\n\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f2674-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"2674\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/2403#wpcf7-f2674-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"2674\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.2\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f2674-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"contact-form-page row\">\n\t<div class=\"contact-row row col-12\">\n\t\t<div class=\"contact-col col-sm-6 col-12\">\n\t\t\t<p><label><br \/>\n<span class=\"contact-required\">Last name<\/span><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"nom\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"nom\" \/><\/span><br \/>\n<\/label>\n\t\t\t<\/p>\n\t\t<\/div>\n\t\t<div class=\"contact-col col-sm-6 \">\n\t\t\t<p><label><br \/>\n<span class=\"contact-required\">First name<\/span><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"prenom\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"text\" name=\"prenom\" \/><\/span><br \/>\n<\/label>\n\t\t\t<\/p>\n\t\t<\/div>\n\t\t<div class=\"contact-row row col-12\">\n\t\t\t<div class=\"contact-col col-sm-6 col-12\">\n\t\t\t\t<p><label><br \/>\n<span>Phone<\/span><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"tel\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-tel wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-tel\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"tel\" name=\"tel\" \/><\/span><br \/>\n<\/label>\n\t\t\t\t<\/p>\n\t\t\t<\/div>\n\t\t\t<div class=\"contact-col col-sm-6 col-12\">\n\t\t\t\t<p><label><br \/>\n<span class=\"contact-required\">E-mail<\/span><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" value=\"\" type=\"email\" name=\"email\" \/><\/span><br \/>\n<\/label>\n\t\t\t\t<\/p>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t<div class=\"contact-row submit-row col-12\">\n\t\t\t<p><label><br \/>\n<span class=\"contact-required\">Yourmessage<\/span><br \/>\n<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"textarea-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea wpcf7-validates-as-required\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Type your text here\" name=\"textarea-message\"><\/textarea><\/span>\n\t\t\t<\/p>\n\t\t<\/div>\n\t\t<div class=\"contact-row submit-row col-12\">\n\t\t\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"checkbox-39\"><span class=\"wpcf7-form-control wpcf7-checkbox wpcf7-validates-as-required\"><span class=\"wpcf7-list-item first last\"><label><input type=\"checkbox\" name=\"checkbox-39[]\" value=\"I authorize the Ch\u00e2teau de Namur to process my data and contact me.\" \/><span class=\"wpcf7-list-item-label\">I authorize the Ch\u00e2teau de Namur to process my data and contact me.<\/span><\/label><\/span><\/span><\/span>\n\t\t\t<\/p>\n\t\t<\/div>\n\t\t<div class=\"contact-row submit-row col-12 text-right\">\n\t\t\t<p><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"Send\" \/>\n\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n\n<h3>How to reach us?<\/h3>\n<p>&nbsp;<\/p>\n<p data-pm-slice=\"1 1 []\">From Namur train station, take the TEC bus number 3. You can also take the cable car and complete the journey to the Ch\u00e2teau by foot (10 minutes).<\/p>\n          <\/div>\n\n          \n        \n      <\/article>\n\n    \n      <article class=\"content-1-1__item image col-md-6 col-sm-12 col-12 animated-fade-to-top\">\n\n\n                              <div class=\"image-three row\">\n              <div class=\"col-12 col-sm-12 col-md-12 col-lg-6\">\n                <div class=\"wrapper-image js-replace-img animated fade-to-top\">\n                  <img decoding=\"async\" src=\"https:\/\/lechateaudenamur.kiff.agency\/wp-content\/uploads\/2025\/05\/chateau-namur-hotel-restaurant-13.webp\" alt=\"chateau-namur-hotel-restaurant-13\">\n                <\/div>\n                <div class=\"wrapper-image js-replace-img animated fade-to-top\">\n                  <img decoding=\"async\" src=\"https:\/\/lechateaudenamur.kiff.agency\/wp-content\/uploads\/2025\/05\/chateau-namur-hotel-restaurant-16.webp\" alt=\"chateau-namur-hotel-restaurant-16\">\n                <\/div>\n              <\/div>\n              <div class=\"col-12 col-sm-12 col-md-12 col-lg-6\">\n                <div class=\"wrapper-image js-replace-img animated fade-to-top\">\n                  <img decoding=\"async\" src=\"https:\/\/lechateaudenamur.kiff.agency\/wp-content\/uploads\/2025\/05\/chateau-namur-hotel-restaurant-10.webp\" alt=\"chateau-namur-hotel-restaurant-10\">\n                <\/div>\n              <\/div>\n            <\/div>\n                  \n      <\/article>\n\n    \n  <\/div>\n\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2403","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Contact and directions for the Ch\u00e2teau de Namur<\/title>\n<meta name=\"description\" content=\"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Contact and directions for the Ch\u00e2teau de Namur\" \/>\n<meta property=\"og:description\" content=\"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/\" \/>\n<meta property=\"og:site_name\" content=\"Le ch\u00e2teau de Namur\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-05T07:44:28+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/\",\"url\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/\",\"name\":\"Contact and directions for the Ch\u00e2teau de Namur\",\"isPartOf\":{\"@id\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/#website\"},\"datePublished\":\"2025-01-14T13:12:45+00:00\",\"dateModified\":\"2025-06-05T07:44:28+00:00\",\"description\":\"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.\",\"breadcrumb\":{\"@id\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Contact\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/#website\",\"url\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/\",\"name\":\"Le ch\u00e2teau de Namur\",\"description\":\"H\u00f4tel &amp; Restaurant\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lechateaudenamur.kiff.agency\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Contact and directions for the Ch\u00e2teau de Namur","description":"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Contact and directions for the Ch\u00e2teau de Namur","og_description":"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.","og_url":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/","og_site_name":"Le ch\u00e2teau de Namur","article_modified_time":"2025-06-05T07:44:28+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/","url":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/","name":"Contact and directions for the Ch\u00e2teau de Namur","isPartOf":{"@id":"https:\/\/lechateaudenamur.kiff.agency\/en\/#website"},"datePublished":"2025-01-14T13:12:45+00:00","dateModified":"2025-06-05T07:44:28+00:00","description":"Contact the Ch\u00e2teau de Namur for your future stay, to reserve a table or to create an exceptional event.","breadcrumb":{"@id":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lechateaudenamur.kiff.agency\/en\/contact\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lechateaudenamur.kiff.agency\/en\/"},{"@type":"ListItem","position":2,"name":"Contact"}]},{"@type":"WebSite","@id":"https:\/\/lechateaudenamur.kiff.agency\/en\/#website","url":"https:\/\/lechateaudenamur.kiff.agency\/en\/","name":"Le ch\u00e2teau de Namur","description":"H\u00f4tel &amp; Restaurant","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lechateaudenamur.kiff.agency\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/pages\/2403","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/comments?post=2403"}],"version-history":[{"count":2,"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/pages\/2403\/revisions"}],"predecessor-version":[{"id":2675,"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/pages\/2403\/revisions\/2675"}],"wp:attachment":[{"href":"https:\/\/lechateaudenamur.kiff.agency\/en\/wp-json\/wp\/v2\/media?parent=2403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}