{"id":4286,"date":"2021-09-07T14:25:09","date_gmt":"2021-09-07T12:25:09","guid":{"rendered":"https:\/\/test.medaustron.motm.com\/?page_id=4286"},"modified":"2022-12-19T09:27:31","modified_gmt":"2022-12-19T07:27:31","slug":"contact","status":"publish","type":"page","link":"https:\/\/www.medaustron.at\/en\/contact\/","title":{"rendered":"Contact"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"blob:https:\/\/test.medaustron.motm.com\/faf20795-b801-4ff9-a77c-969641ad202f\" alt=\"\"\/><\/figure>\n\n\n<section class=\"m06 page-34550\">\n\n    <div class=\"page_banner__thumb\"\n         style=\"background-image: url(https:\/\/www.medaustron.at\/wp-content\/uploads\/2021\/06\/Group-1-TK-20120926-288_TK-20120926-294-7-images-scaled.jpg);\"\n        >\n            <\/div>\n\n\n                <\/section>\n\n<section class=\"m34 page-48562\">\n    <div class=\"container\">\n        <div class=\"main_title\">\n            <div class=\"main_title__left\">\n                                <h3>Contact us<\/h3>\n                                                <p>For general inquiries, please contact us directly.<\/p>\n                            <\/div>\n        <\/div>\n        <div class=\"m34_wrapper\">\n            <div class=\"m34_left\">\n                <p>Please fill out the form completely to contact us. Attention: please refrain from including links in your message, because for security reasons these emails are blocked.<\/p>\n<p>In case of any further questions please do not hesitate to contact us:<\/p>\n<p>Marie Curie-Strasse 5,<br \/>\nA-2700 Wiener Neustadt, Austria<\/p>\n<p><a href=\"https:\/\/www.google.at\/maps\/place\/EBG+MedAustron+GmbH+%7C+Ambulatorium\/@47.8368066,16.2529277,17z\/data=!3m1!4b1!4m5!3m4!1s0x476dcbb412e34a4b:0xdd3adccd3cf551cf!8m2!3d47.836803!4d16.2551164\" rel=\"nofollow noopener\" target=\"_blank\">Directions<\/a><\/p>\n<p><strong>Office hours:<\/strong><\/p>\n<p>Monday to Thursday 08:00 &#8211; 17:00<\/p>\n<p>Friday 08:00 &#8211; 14:00<\/p>\n<p>+43 \/ 2622 \/ 26100<\/p>\n<p><strong>Clinic opening hours:<\/strong><\/p>\n<p>Monday to Friday 07:30 &#8211; 22:00<\/p>\n<p>+43 \/ 2622 \/ 26100 300<\/p>\n            <\/div>\n            <div class=\"m34_right\">\n                <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_7' ><div id='gf_7' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_7' id='gform_7'  action='\/en\/wp-json\/wp\/v2\/pages\/4286#gf_7' data-formid='7' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_7' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_7_1\" class=\"gfield gfield--type-text 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 screen-reader-text' for='input_7_1'>First- and Surname<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_7_1' type='text' value='' class='medium'    placeholder='First- and Surname' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_7_3\" class=\"gfield gfield--type-email 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 screen-reader-text' for='input_7_3'>E-mail Address<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_7_3' type='email' value='' class='medium'   placeholder='E-mail Address' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_7_10\" class=\"gfield gfield--type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label screen-reader-text' for='input_7_10'>Phone Number<\/label><div class='ginput_container ginput_container_text'><input name='input_10' id='input_7_10' type='text' value='' class='medium'    placeholder='Phone Number'  aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_7_7\" 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 screen-reader-text' for='input_7_7'>Your message &#8230;<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_7' id='input_7_7' class='textarea medium'    placeholder='Your message ...' aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_7_9\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent 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 gfield_label_before_complex' >Consent<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_consent'><input name='input_9.1' id='input_7_9_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_7_9_1' >I agree to the privacy policy.<\/label><input type='hidden' name='input_9.2' value='I agree to the privacy policy.' class='gform_hidden' \/><input type='hidden' name='input_9.3' value='8' class='gform_hidden' \/><\/div><\/li><li id=\"field_7_8\" class=\"gfield gfield--type-captcha field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_7_8'>CAPTCHA<\/label><div id='input_7_8' class='ginput_container ginput_recaptcha' data-sitekey='6LdK090cAAAAAGusPEVnSdnEnw0q4nwi2mGlu4Vn'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> \t<span class='m31-alert' style='display:none;'>Thanks for contacting us! We will get in touch with you shortly.<\/span>\n\t<span class=\"m31-button-reset\">\n\t\t<img decoding=\"async\" src=\"https:\/\/www.medaustron.at\/wp-content\/themes\/medaustron\/images\/icon-refresh.svg\" alt=\"\">\n\t<\/span>\t\n\t<button class='button gform_button' id='gform_submit_button_7'><span>Absenden<\/span><\/button> <input type='hidden' name='gform_ajax' value='form_id=7&amp;title=&amp;description=&amp;tabindex=0&amp;theme=legacy&amp;styles=[]&amp;hash=eb4d2376685a2d9bcd98c68948692b4b' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_7' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_7' id='gform_theme_7' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_7' id='gform_style_settings_7' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_7' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='7' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_7' value='WyJ7XCI5LjFcIjpcImI3NGRmYTIzZGM3MDY0ZTc0NzE4ZjEyYzViZTg1NzNlXCIsXCI5LjJcIjpcImM4MjMyN2EyMDM4YzBjZjZlODMzODk5MWI1YWFlMjM2XCIsXCI5LjNcIjpcIjg3ZDE4YjhlNWZjZjFhZGVlODdiNzY5MDVjMmZmMDI3XCJ9IiwiMjYyNzM4NzE4N2M3NmY5MjQ3ODYyMjk2MzQzNjdjMGIiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_7' id='gform_target_page_number_7' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_7' id='gform_source_page_number_7' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\t<script>\n\t\tconsole.log(window.gravity_form_loaded_gform_7)\n\t\tconsole.log('window.gravity_form_loaded_gform_7')\n\t\tif (window.gravity_form_loaded_gform_7) {\n\t\t\twindow.gravity_form_loaded_gform_7();\n\t\t}\n\t\twindow.top.jQuery('#gform_wrapper_7 .m31-button-reset').on('click', function () {\n\t\t\twindow.top.jQuery('#gform_wrapper_7 .ginput_container_text input').val('');\n\t\t\twindow.top.jQuery('#gform_wrapper_7 textarea').val('');\n\t\t\twindow.top.jQuery('#gform_wrapper_7 [type=\"radio\"]').prop('checked', false)\n\t\t\twindow.top.jQuery('#gform_wrapper_7 select').each(function (){\n\t\t\t\twindow.top.jQuery(this).val(window.top.jQuery(this).find('option').first().attr('value'));\n\t\t\t})\n\t\t\twindow.top.jQuery('#gform_wrapper_7 .gform_delete').each(function (){\n\t\t\t\teval(window.top.jQuery(this).attr('onkeypress'));\n\t\t\t})\n\t\t})\n\t<\/script>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_7' id='gform_ajax_frame_7' title='This iframe contains the logic required to handle Ajax powered Gravity Forms.'><\/iframe>\n\t\t                <script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 7, 'https:\/\/www.medaustron.at\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_7').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_7');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_7').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_7').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_7').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_7').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_7').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_7').val();gformInitSpinner( 7, 'https:\/\/www.medaustron.at\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [7, current_page]);window['gf_submitting_7'] = 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_7').append(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_7').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [7]);window['gf_submitting_7'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_7').text());}else{jQuery('#gform_7').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"7\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_7\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_7\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_7\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 7, 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            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n\n<section class=\"m35 page-82777\" >\n    <div class=\"container\">\n        <div class=\"row has_gutter\">\n                            <div class=\"column-6 column-tab-10 column-mob-12\">\n                    <div class=\"m35_content m35_content__left\">\n                                                    <h3>Do you have questions about therapy or treatment?<\/h3>\n                                                                            <p>Are you a patient, family member or referrer? Then please contact us directly via a therapy inquiry.<\/p>\n                                                                            <a class=\"btn_link_with_arrow\"\n                               href=\"\/en\/therapy-request\">therapy request<\/a>\n                                            <\/div>\n                <\/div>\n                        <div class=\"column-6 column-tab-10 column-mob-12\">\n                <div class=\"m35_content\">\n                                            <h3 >You can reach us through these channels.<\/h3>\n                                                                <p>You can also reach us through the following social media channels. <\/p>\n                                                                <ul class=\"m35_social\">\n                                                            <li>\n                                                                            <a href=\"#\"\n                                           target=\"\">\n                                                                                            <img decoding=\"async\" src=\"https:\/\/www.medaustron.at\/wp-content\/uploads\/2021\/03\/icon-facebook-new.svg\"\n                                                     alt=\"Facebook\">\n                                                                                        Facebook                                        <\/a>\n                                                                    <\/li>\n                                                            <li>\n                                                                            <a href=\"#\"\n                                           target=\"\">\n                                                                                            <img decoding=\"async\" src=\"https:\/\/www.medaustron.at\/wp-content\/uploads\/2021\/07\/LinkedIn.svg\"\n                                                     alt=\"Linkedin\">\n                                                                                        Linkedin                                        <\/a>\n                                                                    <\/li>\n                                                            <li>\n                                                                            <a href=\"#\"\n                                           target=\"\">\n                                                                                            <img decoding=\"async\" src=\"https:\/\/www.medaustron.at\/wp-content\/uploads\/2021\/07\/youtube.svg\"\n                                                     alt=\"Youtube\">\n                                                                                        Youtube                                        <\/a>\n                                                                    <\/li>\n                                                    <\/ul>\n                                    <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":4,"featured_media":0,"parent":0,"menu_order":40,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-4286","page","type-page","status-publish","hentry"],"acf":[],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"gform-image-choice-sm":false,"gform-image-choice-md":false,"gform-image-choice-lg":false},"uagb_author_info":{"display_name":"julia.handler@medaustron.at","author_link":"https:\/\/www.medaustron.at\/en\/author\/julia-handlermedaustron-at\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/4286","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/comments?post=4286"}],"version-history":[{"count":5,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/4286\/revisions"}],"predecessor-version":[{"id":7421,"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/pages\/4286\/revisions\/7421"}],"wp:attachment":[{"href":"https:\/\/www.medaustron.at\/en\/wp-json\/wp\/v2\/media?parent=4286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}