{"id":459,"date":"2016-11-15T10:25:14","date_gmt":"2016-11-15T15:25:14","guid":{"rendered":"\/?page_id=459"},"modified":"2016-11-17T11:27:33","modified_gmt":"2016-11-17T16:27:33","slug":"formulaire-location-ou-achat","status":"publish","type":"page","link":"https:\/\/sebastienhenaff.com\/en\/formulaire-location-ou-achat\/","title":{"rendered":"INSTALLEO Form Rent-Buy"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p><a href=\"\/files\/2016\/11\/haute-performance-logo-1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-506\" src=\"\/files\/2016\/11\/haute-performance-logo-1-300x85.jpg\" alt=\"haute-performance-logo-1\" width=\"584\" height=\"165\" srcset=\"https:\/\/sebastienhenaff.com\/files\/2016\/11\/haute-performance-logo-1-300x85.jpg 300w, https:\/\/sebastienhenaff.com\/files\/2016\/11\/haute-performance-logo-1-768x216.jpg 768w, https:\/\/sebastienhenaff.com\/files\/2016\/11\/haute-performance-logo-1-1024x289.jpg 1024w, https:\/\/sebastienhenaff.com\/files\/2016\/11\/haute-performance-logo-1.jpg 1490w\" sizes=\"auto, (max-width: 584px) 100vw, 584px\" \/><\/a><\/p>\n<p><em><strong>RE\/MAX High Performance Inc. is proud to be able to assist you in your search for property in the beautiful province of Quebec in Canada. Whether it is a rental or a purchase, an agent of our team will be happy to meet your real estate needs. Once the form is completed, we will contact you within 48 hours. You are just a few clicks away from your new home.<\/strong><\/em><\/p>\n<p><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_10' >\n                        <div class='gform_heading'>\n                            <h3 class=\"gform_title\">WELCOME TO CANADA<\/h3>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_10'  action='\/en\/wp-json\/wp\/v2\/pages\/459' data-formid='10' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_10' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_10_25\" class=\"gfield gfield--type-name field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >Personal contact<\/label><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_10_25'>\n                            \n                            <span id='input_10_25_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_25.3' id='input_10_25_3' value=''   aria-required='false'     \/>\n                                                    <label for='input_10_25_3' class='gform-field-label gform-field-label--type-sub '>Name<\/label>\n                                                <\/span>\n                            \n                            <span id='input_10_25_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_25.6' id='input_10_25_6' value=''   aria-required='false'     \/>\n                                                    <label for='input_10_25_6' class='gform-field-label gform-field-label--type-sub '>Email<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/li><li id=\"field_10_22\" class=\"gfield gfield--type-text field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_22'>Location<\/label><div class='ginput_container ginput_container_text'><input name='input_22' id='input_10_22' type='text' value='' class='medium'  aria-describedby=\"gfield_description_10_22\"    aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_10_22'>Write the city where to move in.<\/div><\/li><li id=\"field_10_24\" class=\"gfield gfield--type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_24'>Neighborhood<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_24' id='input_10_24' class='medium gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Ahuntsic' >Ahuntsic<\/option><option value='Anjou' >Anjou<\/option><option value='Baie-d&#039;Urf\u00e9' >Baie-d&#039;Urf\u00e9<\/option><option value='Beaconsfield' >Beaconsfield<\/option><option value='Cu00f4te-Des-Neiges' >Cu00f4te-Des-Neiges<\/option><option value='Cu00f4te-Saint-Luc' >Cu00f4te-Saint-Luc<\/option><option value='Dollard Des-Ormaux' >Dollard Des-Ormaux<\/option><option value='Dorval' >Dorval<\/option><option value='Hampstead' >Hampstead<\/option><option value='Kirkland' >Kirkland<\/option><option value='L&#039;u00cele Bizard-Sainte Genevi\u00e8ve' >L&#039;u00cele Bizard-Sainte Genevi\u00e8ve<\/option><option value='L&#039;u00cele Dorval' >L&#039;u00cele Dorval<\/option><option value='Lachine' >Lachine<\/option><option value='Lasalle' >Lasalle<\/option><option value='Le Plateau-Mont-Royal' >Le Plateau-Mont-Royal<\/option><option value='Le Sud-Ouest' >Le Sud-Ouest<\/option><option value='Mercier-Hochelaga Maisonneuve' >Mercier-Hochelaga Maisonneuve<\/option><option value='Mont-Royal' >Mont-Royal<\/option><option value='Montreal-Est' >Montreal-Est<\/option><option value='Montreal-Est' >Montreal-Est<\/option><option value='Montreal-Ouest' >Montreal-Ouest<\/option><option value='Montr\u00e9al-Nord' >Montr\u00e9al-Nord<\/option><option value='Outremont' >Outremont<\/option><option value='Pierrefonds-Roxborow' >Pierrefonds-Roxborow<\/option><option value='Pointe Claire' >Pointe Claire<\/option><option value='Rivi\u00e8re des Prairies-Pointe aux Trembles' >Rivi\u00e8re des Prairies-Pointe aux Trembles<\/option><option value='Saint-Laurent' >Saint-Laurent<\/option><option value='Saint-L\u00e9onard' >Saint-L\u00e9onard<\/option><option value='Sainte-Anne-de-Bellevue' >Sainte-Anne-de-Bellevue<\/option><option value='Senneville' >Senneville<\/option><option value='Verdun-u00cele des Soeurs' >Verdun-u00cele des Soeurs<\/option><option value='Ville Marie' >Ville Marie<\/option><option value='Villeray' >Villeray<\/option><option value='Westmount' >Westmount<\/option><\/select><\/div><\/li><li id=\"field_10_9\" class=\"gfield gfield--type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_9'>Describe your school, college or workplace to adequately meet your needs.<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_9' id='input_10_9' class='textarea medium'   maxlength='120'  aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_10_19\" class=\"gfield gfield--type-select gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_19'>Property Type<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_19' id='input_10_19' class='medium gfield_select'  aria-describedby=\"gfield_description_10_19\"  aria-required=\"true\" aria-invalid=\"false\" ><option value='Apartement' >Apartement<\/option><option value='House' >House<\/option><option value='Chalet' >Chalet<\/option><option value='Income property' >Income property<\/option><\/select><\/div><div class='gfield_description' id='gfield_description_10_19'>Indicate the type of property you want. ( apartment, house,chalet, income property)<\/div><\/li><li id=\"field_10_20\" class=\"gfield gfield--type-select field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_20'>Budget for rent<\/label><div class='ginput_container ginput_container_select'><select name='input_20' id='input_10_20' class='medium gfield_select'  aria-describedby=\"gfield_description_10_20\"   aria-invalid=\"false\" ><option value='$0-$500' >$0-$500<\/option><option value='$500$-$1000' >$500$-$1000<\/option><option value='$1000$-$2000' >$1000$-$2000<\/option><option value='$2000$-$3000' >$2000$-$3000<\/option><option value='$3000$ et +' >$3000$ et +<\/option><\/select><\/div><div class='gfield_description' id='gfield_description_10_20'>Select the desired monthly budget in Canadian dollar.<\/div><\/li><li id=\"field_10_21\" class=\"gfield gfield--type-select field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_10_21'>Budget to buy<\/label><div class='ginput_container ginput_container_select'><select name='input_21' id='input_10_21' class='medium gfield_select'  aria-describedby=\"gfield_description_10_21\"   aria-invalid=\"false\" ><option value='$0$-$100 000' >$0$-$100 000<\/option><option value='$100 000-$200 000' >$100 000-$200 000<\/option><option value='$200 000-$300 000' >$200 000-$300 000<\/option><option value='$300 000-$400 000' >$300 000-$400 000<\/option><option value='$400 000-$600 000' >$400 000-$600 000<\/option><option value='$600 000-$800 000' >$600 000-$800 000<\/option><option value='$800 000-$1 000 000' >$800 000-$1 000 000<\/option><option value='1 000 000$ et +' >1 000 000$ et +<\/option><\/select><\/div><div class='gfield_description' id='gfield_description_10_21'>Select the desired amount to purchase a property (currency in Canadian dollar).<\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_10' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Envoyer'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_10' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_10' id='gform_theme_10' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_10' id='gform_style_settings_10' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_10' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='10' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='TwVPsIsXb4IguZ0MN8IytvjkkTCl7aKyVEVF+DF69gIMZiAEy0BRVGjkwYsTZHUSjB8xxpQgB+hnfWdLefvZF3De9JX92uIc6mKlBlTOZ7\/hkt8=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_10' value='WyJbXSIsImFjOTk3YTc1ZmYzYjhmYmYwYmQ3MjE5MzRkMGUyYjg2Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_10' id='gform_target_page_number_10' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_10' id='gform_source_page_number_10' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 10, 'https:\/\/sebastienhenaff.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_10').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_10');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_10').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_10').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_10').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_10').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_10').val();gformInitSpinner( 10, 'https:\/\/sebastienhenaff.com\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [10, current_page]);window['gf_submitting_10'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_10').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [10]);window['gf_submitting_10'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_10').text());}else{jQuery('#gform_10').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"10\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_10\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_10\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_10\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 10, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n<a href=\"http:\/\/www.bankofcanada.ca\/rates\/exchange\/daily-converter\/?_ga=1.174961061.681080174.1479238557\">http:\/\/www.bankofcanada.ca\/rates\/exchange\/daily-converter\/?_ga=1.174961061.681080174.1479238557<\/a><\/p>\n<p><a href=\"\/files\/2016\/11\/montreal-690737_960_720.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-504\" src=\"\/files\/2016\/11\/montreal-690737_960_720-300x174.jpg\" alt=\"montreal-690737_960_720\" width=\"1027\" height=\"595\" srcset=\"https:\/\/sebastienhenaff.com\/files\/2016\/11\/montreal-690737_960_720-300x174.jpg 300w, https:\/\/sebastienhenaff.com\/files\/2016\/11\/montreal-690737_960_720-768x445.jpg 768w, https:\/\/sebastienhenaff.com\/files\/2016\/11\/montreal-690737_960_720.jpg 960w\" sizes=\"auto, (max-width: 1027px) 100vw, 1027px\" \/><\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>&nbsp; RE\/MAX High Performance Inc. is proud to be able to assist you in your search for property in the beautiful province of Quebec in Canada. Whether it is a rental or a purchase, an agent of our team will be happy to meet your real estate needs. Once the form is completed, we will [&hellip;]<\/p>\n","protected":false},"author":1253,"featured_media":0,"parent":0,"menu_order":50,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-459","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/pages\/459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/users\/1253"}],"replies":[{"embeddable":true,"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/comments?post=459"}],"version-history":[{"count":0,"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/pages\/459\/revisions"}],"wp:attachment":[{"href":"https:\/\/sebastienhenaff.com\/en\/wp-json\/wp\/v2\/media?parent=459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}