{"id":29507,"date":"2025-04-14T11:13:41","date_gmt":"2025-04-14T09:13:41","guid":{"rendered":"https:\/\/annecy.geek-tonic.dev\/access-contact-us-2\/"},"modified":"2025-10-01T14:21:39","modified_gmt":"2025-10-01T12:21:39","slug":"access-contact-us-2","status":"publish","type":"page","link":"https:\/\/annecy.geek-tonic.dev\/en\/la-ravoire\/access-contact-us-2\/","title":{"rendered":"Contact &amp; access (R)"},"content":{"rendered":"\n<section class=\"wp-block-group home-one home-one-ravoire contact-1 has-custom-color-3-background-color has-background has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"border-top-left-radius:30px;border-top-right-radius:30px;margin-top:-1.5em;padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--50)\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-12ca2eb4 wp-block-columns-is-layout-flex\" style=\"padding-right:0px;padding-left:0px\">\n<div class=\"wp-block-column left is-layout-flow wp-block-column-is-layout-flow\">\n<h1 class=\"wp-block-heading has-base-2-color has-text-color has-link-color wp-elements-a22501286a0c8f59f4d73396e527b1f9\">Contact and access to La Ravoire campsite<\/h1>\n\n\n\n<p class=\"has-base-2-color has-text-color has-link-color wp-elements-970f3887b264fe53b124a0ad394bb323\" style=\"padding-top:var(--wp--preset--spacing--30)\">For more information about our <a href=\"https:\/\/annecy.geek-tonic.dev\/en\/la-ravoire\/rentals\/\" data-type=\"page\" data-id=\"3166\">mobile home rentals in Doussard<\/a> or our <a href=\"https:\/\/annecy.geek-tonic.dev\/en\/la-ravoire\/pitches\/\" data-type=\"page\" data-id=\"3170\">camping pitches in Doussard<\/a>, please contact us:<\/p>\n\n\n<script>\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<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_2' ><style>#gform_wrapper_2[data-form-index=\"0\"].gform-theme,[data-parent-form=\"2_0\"]{--gf-color-primary: #b72d29;--gf-color-primary-rgb: 183, 45, 41;--gf-color-primary-contrast: #ffffff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #850000;--gf-color-primary-lighter: #E95F5B;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #217278;--gf-color-secondary-contrast-rgb: 33, 114, 120;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(255, 255, 255, 0.1);--gf-color-out-ctrl-light-rgb: 255, 255, 255;--gf-color-out-ctrl-light-darker: rgba(155, 190, 169, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #9bbea9;--gf-color-out-ctrl-dark-rgb: 155, 190, 169;--gf-color-out-ctrl-dark-darker: #217278;--gf-color-out-ctrl-dark-lighter: rgba(33, 114, 120, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #217278;--gf-color-in-ctrl-contrast-rgb: 33, 114, 120;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #217278;--gf-color-in-ctrl-primary-rgb: 33, 114, 120;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #004046;--gf-color-in-ctrl-primary-lighter: #53A4AA;--gf-color-in-ctrl-light: rgba(255, 255, 255, 0.1);--gf-color-in-ctrl-light-rgb: 255, 255, 255;--gf-color-in-ctrl-light-darker: rgba(155, 190, 169, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #9bbea9;--gf-color-in-ctrl-dark-rgb: 155, 190, 169;--gf-color-in-ctrl-dark-darker: #217278;--gf-color-in-ctrl-dark-lighter: rgba(33, 114, 120, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(33, 114, 120, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(33, 114, 120, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(33, 114, 120, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #9bbea9;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #ffffff;--gf-ctrl-label-color-secondary: #ffffff;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #9bbea9;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(255, 255, 255, 0.8);}<\/style><form method='post' enctype='multipart\/form-data'  id='gform_2'  action='\/en\/wp-json\/wp\/v2\/pages\/29507' data-formid='2' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_2' class='gform_fields top_label form_sublabel_above description_below validation_below'><div id=\"field_2_12\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_above gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_12'>Comments<\/label><div class='ginput_container'><input name='input_12' id='input_2_12' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_2_12'>This field is for validation purposes and should be left unchanged.<\/div><\/div><fieldset id=\"field_2_1\" class=\"gfield gfield--type-name gfield--input-type-name gfield--width-full gfield_contains_required field_sublabel_hidden_label gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Full name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><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_2_1'>\n                            \n                            <span id='input_2_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_2_1_3' value=''   aria-required='true'   placeholder='First name' autocomplete=\"given-name\" \/>\n                                                    <label for='input_2_1_3' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>First<\/label>\n                                                <\/span>\n                            \n                            <span id='input_2_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_2_1_6' value=''   aria-required='true'   placeholder='Name' autocomplete=\"family-name\" \/>\n                                                    <label for='input_2_1_6' class='gform-field-label gform-field-label--type-sub hidden_sub_label screen-reader-text'>Last<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><div id=\"field_2_9\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_9'>Phone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_9' id='input_2_9' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_2_2\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_above gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_2'>E-mail<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_2' id='input_2_2' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_2_4\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_4'>Message<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_4' id='input_2_4' class='textarea large'   maxlength='600'  aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><fieldset id=\"field_2_11\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full gfield_contains_required field_sublabel_above gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Untitled<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/legend><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_2_11'><div class='gchoice gchoice_2_11_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_11.1' type='checkbox'  value='By checking this box, I accept the &lt;a href=&quot;https:\/\/www.campingsannecy.com\/en\/privacy-policy\/&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; style=&quot;color:#b1c5a4&quot;&gt;Privacy Policy&lt;\/a&gt; of this site.'  id='choice_2_11_1'   \/>\n\t\t\t\t\t\t\t\t<label for='choice_2_11_1' id='label_2_11_1' class='gform-field-label gform-field-label--type-inline'>By checking this box, I accept the <a href=\"https:\/\/www.campingsannecy.com\/en\/privacy-policy\/\" rel=\"nofollow\" target=\"_blank\" style=\"color:#b1c5a4\">Privacy Policy<\/a> of this site.<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_2_6\" class=\"gfield gfield--type-captcha gfield--input-type-captcha field_sublabel_above gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_2_6'>CAPTCHA<\/label><div id='input_2_6' class='ginput_container ginput_recaptcha' data-sitekey='6LdFsXorAAAAAMZ6WlumXzL_4VY2ystV-YR3XH9x'  data-theme='light' data-tabindex='-1' data-size='invisible' data-badge='bottomright'><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_2' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Send'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_2' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_2' id='gform_theme_2' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_2' id='gform_style_settings_2' value='{&quot;inputBorderColor&quot;:&quot;#9bbea9&quot;,&quot;inputColor&quot;:&quot;#217278&quot;,&quot;inputPrimaryColor&quot;:&quot;#217278&quot;,&quot;labelColor&quot;:&quot;#ffffff&quot;,&quot;descriptionColor&quot;:&quot;#9bbea9&quot;,&quot;buttonPrimaryBackgroundColor&quot;:&quot;#b72d29&quot;,&quot;buttonPrimaryColor&quot;:&quot;#ffffff&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_2' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='2' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='k9B5oiUE9f0E+URtrf7aHDcQ\/XIcrMkqds2CGBhGNK7pZEsO1BY7wYGxI7\/b1s2LwBlUkIHCTIUdJE8C3gZuUi\/ixT8Jjxt9kmLesnOq0fiyXL0=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_2' value='WyJ7XCIxMS4xXCI6XCIyNTcwZTA1ZGU5YTA4NWQxMzRmYzBkM2QwNjRhMDhkZFwifSIsIjk4NzRmZWE4NmU1YmI3NGEwMDdhMzIzNmNhODhhMWQ3Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_2' id='gform_target_page_number_2' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_2' id='gform_source_page_number_2' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 2, 'https:\/\/annecy.geek-tonic.dev\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_2').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_2');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_2').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_2').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_2').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_2').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_2').val();gformInitSpinner( 2, 'https:\/\/annecy.geek-tonic.dev\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [2, current_page]);window['gf_submitting_2'] = 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_2').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [2]);window['gf_submitting_2'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_2').text());}else{jQuery('#gform_2').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"2\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_2\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_2\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_2\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 2, 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<\/script>\n<\/div>\n\n\n\n<div class=\"wp-block-column right has-global-padding is-layout-constrained wp-block-column-is-layout-constrained\">\n<div class=\"wp-block-group img-slide-right has-global-padding is-layout-constrained wp-container-core-group-is-layout-044ddaed wp-block-group-is-layout-constrained\" style=\"padding-left:var(--wp--preset--spacing--30)\">\n<figure class=\"wp-block-image alignright size-large is-resized first wp-duotone-ffffff-rgb777777-1\" style=\"margin-bottom:5rem\"><img loading=\"lazy\" decoding=\"async\" width=\"682\" height=\"682\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/poignee-de-main.svg\" alt=\"contact details\" class=\"wp-image-5855\" style=\"width:116px\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full has-custom-border last reveal-reverse\" style=\"margin-left:0\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"679\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/equipe-la-ravoire-2024-1.jpg\" alt=\"team la ravoire 2024\" class=\"wp-image-5761\" style=\"border-radius:30px\" srcset=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/equipe-la-ravoire-2024-1.jpg 1000w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/equipe-la-ravoire-2024-1-300x204.jpg 300w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/equipe-la-ravoire-2024-1-768x521.jpg 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<div class=\"wp-block-group page-contact-infos is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-23441af8 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group contact-info has-custom-color-1-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"border-radius:100%\">\n<figure class=\"wp-block-image size-large is-resized wp-duotone-ffffff-ffffff-2\"><a href=\"mailto:info@campinglaravoire.com\"><img decoding=\"async\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/enveloppe.svg\" alt=\"email\" class=\"wp-image-5871\" style=\"width:40px\"\/><\/a><figcaption class=\"wp-element-caption\">info@campinglaravoire.com<\/figcaption><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-group contact-info has-custom-color-1-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"border-radius:100%\">\n<figure class=\"wp-block-image aligncenter size-large\"><a href=\"tel:04 50 44 37 80\"><img loading=\"lazy\" decoding=\"async\" width=\"35\" height=\"35\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/solar_phone-calling-broken-2.svg\" alt=\"solar phone calling broken (2)\" class=\"wp-image-3845\"\/><\/a><figcaption class=\"wp-element-caption\">04 50 44 37 80<\/figcaption><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-group contact-info has-custom-color-1-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"border-radius:100%\">\n<figure class=\"wp-block-image size-large is-resized wp-duotone-ffffff-ffffff-3\"><a href=\"#map-contact\"><img loading=\"lazy\" decoding=\"async\" width=\"512\" height=\"512\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/epingler.svg\" alt=\"pin\" class=\"wp-image-5865\" style=\"width:40px\"\/><\/a><figcaption class=\"wp-element-caption\">Route de la Ravoire, 74210 Doussard<\/figcaption><\/figure>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/section>\n\n<section class=\"wp-block-group home-second page-second page-second-ravoire contact-2 has-base-2-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"margin-bottom:0px;padding-top:0;padding-bottom:var(--wp--preset--spacing--20)\">\n<div data-swiper=\"{&quot;speed&quot;:400,&quot;spaceBetween&quot;:16,&quot;slidesPerView&quot;:2,&quot;createElements&quot;:true,&quot;loop&quot;:true,&quot;freemode&quot;:true,&quot;navigation&quot;:{&quot;nextEl&quot;:&quot;buttonNext&quot;,&quot;prevEl&quot;:&quot;buttonPrev&quot;},&quot;breakpoints&quot;:{&quot;0&quot;:{&quot;slidesPerView&quot;:1},&quot;781&quot;:{&quot;slidesPerView&quot;:2}},&quot;pagination&quot;:false}\" class=\"wp-block-group gt-is-slider gt-is-slider-desktop is-layout-flow wp-block-group-is-layout-flow\">\n<figure class=\"wp-block-image size-full has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2000\" height=\"1333\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard.jpg\" alt=\"Customer services at La Ravoire campsite in Doussard\" class=\"wp-image-5268\" style=\"border-top-left-radius:30px;border-top-right-radius:30px\" srcset=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard.jpg 2000w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard-300x200.jpg 300w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard-1024x682.jpg 1024w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard-768x512.jpg 768w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/services-clients-camping-la-ravoire-doussard-1536x1024.jpg 1536w\" sizes=\"auto, (max-width: 2000px) 100vw, 2000px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2000\" height=\"1333\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy.jpg\" alt=\"Camping La Ravoire near Lake Annecy\" class=\"wp-image-5256\" style=\"border-top-left-radius:30px;border-top-right-radius:30px\" srcset=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy.jpg 2000w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy-300x200.jpg 300w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy-1024x682.jpg 1024w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy-768x512.jpg 768w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/camping-la-ravoire-lac-annecy-1536x1024.jpg 1536w\" sizes=\"auto, (max-width: 2000px) 100vw, 2000px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2000\" height=\"1333\" src=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard.jpg\" alt=\"reception at La Ravoire family campsite in Doussard\" class=\"wp-image-5264\" style=\"border-top-left-radius:30px;border-top-right-radius:30px\" srcset=\"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard.jpg 2000w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard-300x200.jpg 300w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard-1024x682.jpg 1024w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard-768x512.jpg 768w, https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/reception-camping-familial-doussard-1536x1024.jpg 1536w\" sizes=\"auto, (max-width: 2000px) 100vw, 2000px\" \/><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-d93d73a3 wp-block-columns-is-layout-flex\" style=\"padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)\">\n<div class=\"wp-block-column left is-layout-flow wp-block-column-is-layout-flow\">\n<p class=\"h1-like has-custom-color-3-color has-text-color has-link-color has-righteous-font-family wp-elements-c990255c735c95aee31a35b5a3e913e8\" style=\"font-size:clamp(75.53px, 4.721rem + ((1vw - 3.2px) * 7.68), 170px);font-style:normal;font-weight:400;line-height:0.8;text-transform:uppercase\">here we come!<\/p>\n\n\n\n<div class=\"wp-block-group group-h2-like has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\" style=\"padding-bottom:var(--wp--preset--spacing--60)\">\n<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" version=\"1.2\" viewbox=\"0 0 367 184\" width=\"367\" height=\"184\">\n  <title>traced arrow (2)<\/title>\n  <style>\n .s0 { fill: none;stroke: #4d4d4d;stroke-width: 2 } \n\t<\/style>\n  <path class=\"s0\" d=\"m8.3 6.1c0.6 10.8-3.3 47.6 28.2 69.4 13 9 36.6 11.8 54.5-9.1 15-17.5 10.5-34.2 0-43.9-17.7-16.4-41 0-47.5 21.5-7.8 25.7-4 48 32 91.5 36 43.5 159 84 288-9.5m-355.2-119.9c-1.5 0.7-5.3-3.4-7.3-4.9m7.3 4.9c1.4-0.7 5.3-4.3 6.8-5.4m335.6 123.5c3.2 2 10.7 4.5 15.7-1.8-2.6 3.1-6.4 11-0.9 18.1\"><\/path>\n<\/svg>\n\n\n\n<p class=\"has-text-align-right has-custom-color-3-color has-text-color has-link-color has-kalam-font-family wp-elements-50a344f93ea0e513d2f5d16800eb5d85\" style=\"font-size:clamp(15.197px, 0.95rem + ((1vw - 3.2px) * 0.634), 23px);font-style:normal;font-weight:400;letter-spacing:2px;line-height:1.3\"><a href=\"https:\/\/maps.app.goo.gl\/RAPz7YhtsKn48yFX6\" target=\"_blank\" rel=\"noopener nofollow\">Get to the campsite<\/a><\/p>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column right has-base-2-color has-text-color has-link-color wp-elements-4c9b373a109e2cd92c2384a9da0f5fc2 is-layout-flow wp-block-column-is-layout-flow\" style=\"padding-right:5rem;flex-basis:45%\">\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading has-custom-color-2-color has-text-color has-link-color has-large-font-size wp-elements-2e753879425bc68a89d4a5f9b84766e0\">How do I get to La Ravoire campsite near Annecy?<\/h2>\n\n\n\n<p class=\"has-custom-color-2-color has-text-color has-link-color wp-elements-2efe2a793e71738c8da39f178eccbcb2\" style=\"padding-top:var(--wp--preset--spacing--20)\">How to get to camping La Ravoire, our <a href=\"https:\/\/annecy.geek-tonic.dev\/en\/la-ravoire\/\" data-type=\"page\" data-id=\"2374\">campsite in Doussard<\/a> in Haute-Savoie?<\/p>\n\n\n\n<details class=\"gt-fse-faq wp-elements-d9f3a1779adfc147e968b1b85caa84ed wp-block-gt-gt-fse-faq has-text-color has-custom-color-2-color\" data-wp-interactive=\"gt-fse-faq\" data-wp-context='{ \"isOpen\": false }'>\n\t<summary aria-expanded=\"false\" class=\"gt-fse-faq-summary\" data-wp-on--click=\"actions.toggle\" data-wp-bind--aria-expanded=\"context.isOpen\">\n\t\t<div class=\"gt-fse-faq-summary-text\"><strong>HOW TO GET HERE BY CAR  <\/strong><\/div>\n\t\t<span class=\"gt-fse-faq-opener\"><\/span>\n\t<\/summary>\n\t<div class=\"gt-fse-faq-content\">\n\t\t\n\n<p style=\"padding-top:var(--wp--preset--spacing--20)\"><strong>From Annecy:<\/strong> Take the D1508 towards Port de Doussard, following the western shore of Lake Annecy. At Bout du Lac, at the \u201cChez Ma Cousine\u201d restaurant, turn right off the D1508 and follow the La Ravoire road to your destination: 862 Route de la Ravoire 74210 Doussard. <\/p>\n\n\n\n<p style=\"padding-top:0\"><strong>From Aix-les-Bains:<\/strong> Take the D1201 to Gr\u00e9sy-sur-Aix. Follow the A41 freeway to the D2201 (Avenue du Pont-Neuf) at Annecy. Then take the D1508 and follow the directions above (to the <a href=\"https:\/\/annecy.geek-tonic.dev\/en\/\">campsite from Annecy<\/a>).  <\/p>\n\n\n\n<p style=\"padding-top:0\"><strong>From Albertville:<\/strong> Follow the D1212 and D1508 towards Annecy. Pass the Doussard beach and, at the \u201cChez ma Cousine\u201d restaurant, turn left onto the Route de la Ravoire to reach the <a href=\"https:\/\/annecy.geek-tonic.dev\/en\/la-ravoire\/\" data-type=\"page\" data-id=\"2374\">campsite<\/a>. <\/p>\n\n\t<\/div>\n<\/details>\n\n\n<details class=\"gt-fse-faq wp-elements-f22cdb1feace37035cefe8e988cb1d94 wp-block-gt-gt-fse-faq has-text-color has-custom-color-2-color\" data-wp-interactive=\"gt-fse-faq\" data-wp-context='{ \"isOpen\": false }'>\n\t<summary aria-expanded=\"false\" class=\"gt-fse-faq-summary\" data-wp-on--click=\"actions.toggle\" data-wp-bind--aria-expanded=\"context.isOpen\">\n\t\t<div class=\"gt-fse-faq-summary-text\"><strong>HOW TO GET HERE BY TRAIN OR BUS?  <\/strong><\/div>\n\t\t<span class=\"gt-fse-faq-opener\"><\/span>\n\t<\/summary>\n\t<div class=\"gt-fse-faq-content\">\n\t\t\n\n<p style=\"padding-top:var(--wp--preset--spacing--20)\">Annecy SNCF station (18 km) served by TER trains and a direct TGV link from Paris.<br\/>From the station, the bus (line 51) can take you to the Bout du Lac stop (15-minute walk from the campsite).<\/p>\n\n\t<\/div>\n<\/details>\n\n\n<details class=\"gt-fse-faq wp-elements-7492a6a11876b15302b33c89dfb73c6b wp-block-gt-gt-fse-faq has-text-color has-custom-color-2-color\" data-wp-interactive=\"gt-fse-faq\" data-wp-context='{ \"isOpen\": false }'>\n\t<summary aria-expanded=\"false\" class=\"gt-fse-faq-summary\" data-wp-on--click=\"actions.toggle\" data-wp-bind--aria-expanded=\"context.isOpen\">\n\t\t<div class=\"gt-fse-faq-summary-text\"><strong>HOW TO GET HERE BY PLANE  <\/strong><\/div>\n\t\t<span class=\"gt-fse-faq-opener\"><\/span>\n\t<\/summary>\n\t<div class=\"gt-fse-faq-content\">\n\t\t\n\n<p style=\"padding-top:var(--wp--preset--spacing--20)\">Geneva International Airport, 50 km from Annecy.<br\/>Coach service to Annecy, then bus to Doussard.<\/p>\n\n\t<\/div>\n<\/details>\n\n\n<p class=\"has-custom-color-2-color has-text-color has-link-color wp-elements-d16dd9a3e54e2cce602a980e72226475\"><strong>Latitude: <\/strong>N 45\u00b0 48 &#8220;9.738 \u2018\/ <strong>Longitude: <\/strong>E 6\u00b0 12\u2019 32.519&#8243;  <\/p>\n<\/div>\n<\/div>\n\n\n\n<iframe id=\"map-contact\" src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d11451.462158172946!2d6.199857344577728!3d45.803941297466885!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x478b946cfbb35a4b%3A0x18e9b807ac0abe63!2sCamping%20Annecy%20Lac%20-%20la%20Ravoire%20-%20Doussard%20-%20Yelloh%20Village!5e0!3m2!1sfr!2sfr!4v1745501093323!5m2!1sfr!2sfr\" width=\"100%\" height=\"600\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"><\/iframe>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>Contact and access to La Ravoire campsite For more information about our mobile home rentals in Doussard or our camping pitches in Doussard, please contact us: here we come! traced arrow (2) Get to the campsite How do I get to La Ravoire campsite near Annecy? How to get to camping La Ravoire, our campsite [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5846,"parent":56147,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"wp-custom-template-page-interne-ravoire","meta":{"_acf_changed":false,"_seopress_robots_primary_cat":"","_seopress_titles_title":"Camping La Ravoire Doussard: Relaxation in Haute-Savoie","_seopress_titles_desc":"All contact information and access to book your rentals at La Ravoire campsite with mountain views in Haute-Savoie.","_seopress_robots_index":"","inline_featured_image":false,"gt_fse_maillage_image":"https:\/\/annecy.geek-tonic.dev\/wp-content\/uploads\/2025\/04\/vacances-en-van-haute-savoie-camping-la-ravoire.jpg","gt_fse_maillage_titre":"Contact","gt_fse_maillage_alt":"Contact and access","gt_fse_maillage_resume":"","footnotes":""},"categories":[],"tags":[],"class_list":["post-29507","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/pages\/29507","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/comments?post=29507"}],"version-history":[{"count":17,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/pages\/29507\/revisions"}],"predecessor-version":[{"id":36523,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/pages\/29507\/revisions\/36523"}],"up":[{"embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/pages\/56147"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/media\/5846"}],"wp:attachment":[{"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/media?parent=29507"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/categories?post=29507"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/annecy.geek-tonic.dev\/en\/wp-json\/wp\/v2\/tags?post=29507"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}