{"id":103713,"date":"2025-07-18T07:35:04","date_gmt":"2025-07-18T07:35:04","guid":{"rendered":"https:\/\/fieldsofhonor.com\/memorial\/"},"modified":"2025-12-23T13:33:33","modified_gmt":"2025-12-23T13:33:33","slug":"memorial","status":"publish","type":"page","link":"https:\/\/fieldsofhonor.com\/fr\/memorial\/","title":{"rendered":"M\u00e9morial"},"content":{"rendered":"\r\n<div class=\"eye-block hero\">\r\n    <div class=\"hero-content\">\r\n        <div class=\"row\">\r\n            <div class=\"col-12 col-md-5\">\r\n                <div class=\"acf-innerblocks-container\">\n\n<h1 class=\"wp-block-heading\">M\u00e9morial<\/h1>\n\n\n\n<p>Personne ne m\u00e9rite d\u2019\u00eatre oubli\u00e9<\/p>\n\n\n\n<p>Son m\u00e9morial virtuel est d\u00e9di\u00e9 \u00e0 environ 45 000 soldats am\u00e9ricains qui ont perdu la vie pendant la Seconde Guerre mondiale. Ils sont soit enterr\u00e9s, soit comm\u00e9mor\u00e9s comme disparus dans les cimeti\u00e8res militaires am\u00e9ricains d&rsquo;outre-mer d&rsquo;Ardennes, d&rsquo;\u00c9pinal, d&rsquo;Henri-Chapelle, de Lorraine, de Luxembourg et de Margraten. Effectuez une recherche dans le m\u00e9morial pour en savoir plus sur ces hommes et ces femmes.  <\/p>\n\n\n<div class=\"eye-block db-search \">\r\n    <input\r\n            type=\"search\"\r\n            class=\"db-search__input\"\r\n            placeholder=\"Rechercher un m\u00e9morial\"\r\n    \/>\r\n    <button type=\"button\" class=\"db-search__btn\">\r\n        <i class=\"fa-solid fa-magnifying-glass\"><\/i>\r\n    <\/button>\r\n<\/div>\r\n\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', () => {\r\n        document.querySelectorAll('.db-search').forEach(block => {\r\n            const input = block.querySelector('.db-search__input');\r\n            const button = block.querySelector('.db-search__btn');\r\n\r\n            if (!input || !button) return;\r\n\r\n            const submitSearch = () => {\r\n                const query = encodeURIComponent(input.value.trim());\r\n                if (query) {\r\n                    window.open(\r\n                        `https:\/\/memorial.fieldsofhonor.com\/fieldsofhonor\/CaseRecords\/e_index\/?q=${query}`,\r\n                        '_blank'\r\n                    );\r\n                }\r\n            };\r\n\r\n            button.addEventListener('click', submitSearch);\r\n\r\n            input.addEventListener('keydown', e => {\r\n                if (e.key === 'Enter') {\r\n                    e.preventDefault();\r\n                    submitSearch();\r\n                }\r\n            });\r\n        });\r\n    });\r\n<\/script>\r\n\n<\/div>\r\n            <\/div>\r\n        <\/div>\r\n    <\/div>\r\n    <div class=\"hero-video-overlay\"><\/div>\r\n    <div class=\"hero-video\">\r\n                                            <img decoding=\"async\" src=\"https:\/\/fieldsofhonor.com\/wp-content\/uploads\/2025\/10\/1st-Lt-Bill-F.-Moore-scaled-6.jpg\"\r\n                     alt=\"\"\r\n                     class=\"img-fluid\">\r\n                        <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', () => {\r\n        document.querySelectorAll('.hero').forEach(container => {\r\n            const headings = container.querySelectorAll('h1, h2, h3, h4, h5, h6');\r\n            const paragraphs = container.querySelectorAll('p');\r\n\r\n            if (headings.length >= 1 && paragraphs.length === 0) {\r\n                container.classList.add('content-only-title');\r\n            } else {\r\n                container.classList.add('content-has-text');\r\n            }\r\n        });\r\n    });\r\n<\/script>\r\n<div class=\"eye-block empty-space empty-space--large pt-lg-5 pb-lg-5 pt-4 pb-4\" ><\/div>\n<div class=\"ghostkit-grid ghostkit-grid-gap-md\"><div class=\"ghostkit-grid-inner\">\n<div class=\"ghostkit-col ghostkit-col-md-12 ghostkit-col-4\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\">\n<h2 class=\"wp-block-heading\">D\u00e9couvrez une small s\u00e9lection de la base de donn\u00e9es<\/h2>\n<\/div><\/div>\n\n\n\n<div class=\"ghostkit-col ghostkit-col-md-12 ghostkit-col-8\"><div class=\"ghostkit-col-content is-layout-flow wp-block-ghostkit-grid-column-is-layout-flow\"><div class=\"eye-block db-featured \">\n    <div class=\"db-featured-container d-flex flex-wrap gap-2\">\n        <i class=\"fa fa-spinner fa-spin\"><\/i>\n    <\/div>\n<\/div>\n\n<script>\n    document.addEventListener('DOMContentLoaded', function () {\n        const containers = document.querySelectorAll('.db-featured-container');\n        const hasHighlightImages = document.getElementById('highlight-image-0') !== null;\n\n        if (containers.length === 0 && !hasHighlightImages) return;\n\n        fetch('https:\/\/fieldsofhonor.winkapp.nl\/fieldsofhonor\/CaseRecords\/e_site_highlight\/')\n            .then(response => response.json())\n            .then(data => {\n                containers.forEach(container => {\n                    container.innerHTML = '';\n\n                    if (typeof data === 'object' && data !== null) {\n                        console.log(data);\n                        Object.entries(data.names).forEach(([name, url]) => {\n                            createButton(container, name, url);\n                        });\n                    }\n                });\n\n                \/\/ Populate highlight images if they exist\n                if (data.images && Array.isArray(data.images)) {\n                    data.images.forEach((imageUrl, index) => {\n                        const imageElement = document.getElementById(`highlight-image-${index}`);\n                        if (imageElement) {\n                            \/\/ If it's an img tag, set src; otherwise set innerHTML\n                            if (imageElement.tagName === 'IMG') {\n                                imageElement.src = imageUrl;\n                                imageElement.removeAttribute('srcset');\n                                imageElement.removeAttribute('width');\n                                imageElement.removeAttribute('height');\n                            } else {\n                                imageElement.innerHTML = `<img decoding=\"async\" src=\"${imageUrl}\" alt=\"\">`;\n                            }\n                        }\n                    });\n                }\n\n                lenis.resize();\n            })\n            .catch(error => {\n                console.error('Error fetching featured cases:', error);\n                \/\/ Optionally clear the spinner on error or show a message\n                containers.forEach(container => container.innerHTML = '');\n            });\n\n        function createButton(container, name, url) {\n            const a = document.createElement('a');\n            const colors = [\n                'black', 'black', 'black',\n                'black', 'black', 'black',\n                'darkgreen', 'green', 'olive',\n                'lightgreen', 'red', 'blue'\n            ];\n            const randomColor = colors[Math.floor(Math.random() * colors.length)];\n\n            a.href = url;\n            a.className = `btn btn-primary bg-and-border--${randomColor}`;\n            a.textContent = name;\n            container.appendChild(a);\n        }\n    });\n\n<\/script><\/div><\/div>\n<\/div><\/div>\n\r\n<div class=\"eye-block empty-space empty-space--large pt-lg-5 pb-lg-5 pt-4 pb-4\" ><\/div>\r\n\r\n<div class=\"eye-block fullwidth-row alignfull  alignfull bg--lightgreen  contained\"  >\r\n\r\n            <div class=\"container\">\r\n    \r\n    <div class=\"fullwidth-row--container\">\r\n        <div class=\"acf-innerblocks-container\">\n\r\n<div class=\"faq__container\">\r\n    <h3 class=\"faq__title mb-3\"><\/h3>\r\n    <div class=\"accordion eye-block faq\" id=\"faqAccordion_6a09b95bd8e00\">\r\n                                    <div class=\"accordion-item\">\r\n                    <h5 class=\"accordion-header\" id=\"faqAccordion_6a09b95bd8e00_heading0\">\r\n                        <button class=\"accordion-button collapsed d-flex justify-content-between align-items-center\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#faqAccordion_6a09b95bd8e00_collapse0\" aria-expanded=\"false\" aria-controls=\"faqAccordion_6a09b95bd8e00_collapse0\">\r\n                            Je souhaite obtenir une copie des informations concernant un soldat en particulier                            <i class=\"fa-regular fa-arrow-right custom-arrow-icon m-0\"><\/i>\r\n                        <\/button>\r\n                    <\/h5>\r\n                    <div id=\"faqAccordion_6a09b95bd8e00_collapse0\" class=\"accordion-collapse collapse\" aria-labelledby=\"faqAccordion_6a09b95bd8e00_heading0\" data-bs-parent=\"#faqAccordion_6a09b95bd8e00\">\r\n                        <div class=\"accordion-body\">\r\n                            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis in vulputate augue. Vestibulum tempor urna ac maximus vestibulum. Proin lobortis odio vel turpis placerat auctor. Aenean ex nibh, finibus eget semper in, rutrum eu metus. Praesent gravida neque feugiat lorem pellentesque venenatis. Donec accumsan vulputate nisl. Nulla libero lacus, elementum vitae maximus eget, laoreet eget mauris.<\/p>\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n                            <div class=\"accordion-item\">\r\n                    <h5 class=\"accordion-header\" id=\"faqAccordion_6a09b95bd8e00_heading1\">\r\n                        <button class=\"accordion-button collapsed d-flex justify-content-between align-items-center\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#faqAccordion_6a09b95bd8e00_collapse1\" aria-expanded=\"false\" aria-controls=\"faqAccordion_6a09b95bd8e00_collapse1\">\r\n                            Dois-je demander l&rsquo;autorisation si je souhaite pr\u00e9senter des informations sur mon site web&nbsp;?                             <i class=\"fa-regular fa-arrow-right custom-arrow-icon m-0\"><\/i>\r\n                        <\/button>\r\n                    <\/h5>\r\n                    <div id=\"faqAccordion_6a09b95bd8e00_collapse1\" class=\"accordion-collapse collapse\" aria-labelledby=\"faqAccordion_6a09b95bd8e00_heading1\" data-bs-parent=\"#faqAccordion_6a09b95bd8e00\">\r\n                        <div class=\"accordion-body\">\r\n                            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis in vulputate augue. Vestibulum tempor urna ac maximus vestibulum. Proin lobortis odio vel turpis placerat auctor. Aenean ex nibh, finibus eget semper in, rutrum eu metus. Praesent gravida neque feugiat lorem pellentesque venenatis. Donec accumsan vulputate nisl. Nulla libero lacus, elementum vitae maximus eget, laoreet eget mauris.<\/p>\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n                            <div class=\"accordion-item\">\r\n                    <h5 class=\"accordion-header\" id=\"faqAccordion_6a09b95bd8e00_heading2\">\r\n                        <button class=\"accordion-button collapsed d-flex justify-content-between align-items-center\" type=\"button\" data-bs-toggle=\"collapse\" data-bs-target=\"#faqAccordion_6a09b95bd8e00_collapse2\" aria-expanded=\"false\" aria-controls=\"faqAccordion_6a09b95bd8e00_collapse2\">\r\n                            Comment puis-je soumettre des informations sur un soldat&nbsp;?                            <i class=\"fa-regular fa-arrow-right custom-arrow-icon m-0\"><\/i>\r\n                        <\/button>\r\n                    <\/h5>\r\n                    <div id=\"faqAccordion_6a09b95bd8e00_collapse2\" class=\"accordion-collapse collapse\" aria-labelledby=\"faqAccordion_6a09b95bd8e00_heading2\" data-bs-parent=\"#faqAccordion_6a09b95bd8e00\">\r\n                        <div class=\"accordion-body\">\r\n                            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis in vulputate augue. Vestibulum tempor urna ac maximus vestibulum. Proin lobortis odio vel turpis placerat auctor. Aenean ex nibh, finibus eget semper in, rutrum eu metus. Praesent gravida neque feugiat lorem pellentesque venenatis. Donec accumsan vulputate nisl. Nulla libero lacus, elementum vitae maximus eget, laoreet eget mauris.<\/p>\n                        <\/div>\r\n                    <\/div>\r\n                <\/div>\r\n                        <\/div>\r\n<\/div>\n<\/div>\r\n    <\/div>\r\n\r\n            <\/div>\r\n    \r\n<\/div>\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-lg-5 pb-lg-5 pt-4 pb-4\" ><\/div>\n<h2 class=\"wp-block-heading\">En savoir plus<\/h2>\n\r\n<div class=\"eye-block empty-space empty-space--small pt-md-3 pb-md-3 pt-2 pb-2\" ><\/div>\r\n    <div class=\"eye-block end-of-page-slider swiper\">\r\n        <div class=\"swiper-wrapper\">\r\n\r\n            \r\n                \r\n                <div\r\n                        class=\"swiper-slide end-of-page-slider__slide\"\r\n                        style=\"background-image: url(https:\/\/fieldsofhonor.com\/wp-content\/uploads\/2025\/11\/HRIMG_6372-scaled.jpg);\"                >\r\n\r\n                                            <a\r\n                                href=\"https:\/\/fieldsofhonor.com\/fr\/cimetieres\/\"\r\n                                class=\"end-of-page-slider__link-overlay\"\r\n                                aria-label=\"Cimeti\u00e8res\"\r\n                        ><\/a>\r\n                    \r\n                    <div class=\"end-of-page-slider__content\">\r\n                                                    <h2 class=\"end-of-page-slider__title\">\r\n                                Cimeti\u00e8res                            <\/h2>\r\n                        \r\n                                                    <p class=\"end-of-page-slider__subtitle\">\r\n                                Visitez les 6 cimeti\u00e8res et les tombes isol\u00e9es                            <\/p>\r\n                                            <\/div>\r\n\r\n                <\/div>\r\n\r\n            \r\n                \r\n                <div\r\n                        class=\"swiper-slide end-of-page-slider__slide\"\r\n                        style=\"background-image: url(https:\/\/fieldsofhonor.com\/wp-content\/uploads\/2025\/11\/ABRAHAM_Marshall_T_MAR-M-16-7_02origineel.png);\"                >\r\n\r\n                                            <a\r\n                                href=\"https:\/\/fieldsofhonor.com\/fr\/memorial\/\"\r\n                                class=\"end-of-page-slider__link-overlay\"\r\n                                aria-label=\"M\u00e9morial\"\r\n                        ><\/a>\r\n                    \r\n                    <div class=\"end-of-page-slider__content\">\r\n                                                    <h2 class=\"end-of-page-slider__title\">\r\n                                M\u00e9morial                            <\/h2>\r\n                        \r\n                                                    <p class=\"end-of-page-slider__subtitle\">\r\n                                Visitez notre m\u00e9morial num\u00e9rique                            <\/p>\r\n                                            <\/div>\r\n\r\n                <\/div>\r\n\r\n            \r\n                \r\n                <div\r\n                        class=\"swiper-slide end-of-page-slider__slide colored-bg bg--lightgreen\"\r\n                                        >\r\n\r\n                    \r\n                    <div class=\"end-of-page-slider__content\">\r\n                                                    <h2 class=\"end-of-page-slider__title\">\r\n                                Test 3                            <\/h2>\r\n                        \r\n                                                    <p class=\"end-of-page-slider__subtitle\">\r\n                                Dit is een test voor 3                            <\/p>\r\n                                            <\/div>\r\n\r\n                <\/div>\r\n\r\n            \r\n\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <div class=\"swiper-buttons\">\r\n        <div class=\"swiper-button-prev-eops\">\r\n            <i class=\"fa-regular fa-arrow-up-long\"><\/i>\r\n        <\/div>\r\n        <div class=\"swiper-button-next-eops\">\r\n            <i class=\"fa-regular fa-arrow-down-long\"><\/i>\r\n        <\/div>\r\n    <\/div>\r\n\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', function () {\r\n        const endOfPageSlider = new Swiper('.end-of-page-slider', {\r\n            direction: 'vertical',\r\n            slidesPerView: 1,\r\n            spaceBetween: 0,\r\n            allowTouchMove: false,\r\n            simulateTouch: false,\r\n            grabCursor: false,\r\n            touchEventsTarget: 'container',\r\n            effect: 'cards',\r\n            loop: false,\r\n            navigation: {\r\n                nextEl: '.swiper-button-next-eops',\r\n                prevEl: '.swiper-button-prev-eops',\r\n            },\r\n            cardsEffect: {\r\n                rotate: 0,\r\n            }\r\n        });\r\n    });\r\n<\/script>\r\n\r\n<div class=\"eye-block empty-space empty-space--large pt-lg-5 pb-lg-5 pt-4 pb-4\" ><\/div>","protected":false},"excerpt":{"rendered":"<p>En savoir plus<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"ghostkit_customizer_options":"","ghostkit_custom_css":"","ghostkit_custom_js_head":"","ghostkit_custom_js_foot":"","ghostkit_typography":"","footnotes":""},"class_list":["post-103713","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>M\u00e9morial - Fields of Honor<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fieldsofhonor.com\/fr\/memorial\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"M\u00e9morial - Fields of Honor\" \/>\n<meta property=\"og:description\" content=\"En savoir plus\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fieldsofhonor.com\/fr\/memorial\/\" \/>\n<meta property=\"og:site_name\" content=\"Fields of Honor\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/degezichtenvanmargraten\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-23T13:33:33+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/memorial\\\/\",\"url\":\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/memorial\\\/\",\"name\":\"M\u00e9morial - Fields of Honor\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#website\"},\"datePublished\":\"2025-07-18T07:35:04+00:00\",\"dateModified\":\"2025-12-23T13:33:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/memorial\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/memorial\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/memorial\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fieldsofhonor.com\\\/fr\\\/accueil\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"M\u00e9morial\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#website\",\"url\":\"https:\\\/\\\/fieldsofhonor.com\\\/\",\"name\":\"Fields of Honor\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fieldsofhonor.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#organization\",\"name\":\"Fields of Honor\",\"url\":\"https:\\\/\\\/fieldsofhonor.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/fieldsofhonor.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Logo_Cmyk_vierkant-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/fieldsofhonor.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Logo_Cmyk_vierkant-scaled.jpg\",\"width\":2560,\"height\":2560,\"caption\":\"Fields of Honor\"},\"image\":{\"@id\":\"https:\\\/\\\/fieldsofhonor.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/degezichtenvanmargraten\",\"https:\\\/\\\/www.instagram.com\\\/degezichtenvanmargraten\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@fieldsofhonorfoundation\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"M\u00e9morial - Fields of Honor","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fieldsofhonor.com\/fr\/memorial\/","og_locale":"fr_FR","og_type":"article","og_title":"M\u00e9morial - Fields of Honor","og_description":"En savoir plus","og_url":"https:\/\/fieldsofhonor.com\/fr\/memorial\/","og_site_name":"Fields of Honor","article_publisher":"https:\/\/www.facebook.com\/degezichtenvanmargraten","article_modified_time":"2025-12-23T13:33:33+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/fieldsofhonor.com\/fr\/memorial\/","url":"https:\/\/fieldsofhonor.com\/fr\/memorial\/","name":"M\u00e9morial - Fields of Honor","isPartOf":{"@id":"https:\/\/fieldsofhonor.com\/#website"},"datePublished":"2025-07-18T07:35:04+00:00","dateModified":"2025-12-23T13:33:33+00:00","breadcrumb":{"@id":"https:\/\/fieldsofhonor.com\/fr\/memorial\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fieldsofhonor.com\/fr\/memorial\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/fieldsofhonor.com\/fr\/memorial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fieldsofhonor.com\/fr\/accueil\/"},{"@type":"ListItem","position":2,"name":"M\u00e9morial"}]},{"@type":"WebSite","@id":"https:\/\/fieldsofhonor.com\/#website","url":"https:\/\/fieldsofhonor.com\/","name":"Fields of Honor","description":"","publisher":{"@id":"https:\/\/fieldsofhonor.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fieldsofhonor.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/fieldsofhonor.com\/#organization","name":"Fields of Honor","url":"https:\/\/fieldsofhonor.com\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/fieldsofhonor.com\/#\/schema\/logo\/image\/","url":"https:\/\/fieldsofhonor.com\/wp-content\/uploads\/2025\/12\/Logo_Cmyk_vierkant-scaled.jpg","contentUrl":"https:\/\/fieldsofhonor.com\/wp-content\/uploads\/2025\/12\/Logo_Cmyk_vierkant-scaled.jpg","width":2560,"height":2560,"caption":"Fields of Honor"},"image":{"@id":"https:\/\/fieldsofhonor.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/degezichtenvanmargraten","https:\/\/www.instagram.com\/degezichtenvanmargraten\/","https:\/\/www.youtube.com\/@fieldsofhonorfoundation"]}]}},"_links":{"self":[{"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/pages\/103713","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/comments?post=103713"}],"version-history":[{"count":1,"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/pages\/103713\/revisions"}],"predecessor-version":[{"id":103714,"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/pages\/103713\/revisions\/103714"}],"wp:attachment":[{"href":"https:\/\/fieldsofhonor.com\/fr\/wp-json\/wp\/v2\/media?parent=103713"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}