{"id":1962,"date":"2010-08-30T19:20:00","date_gmt":"2010-08-30T19:20:00","guid":{"rendered":"https:\/\/www.bonfils.augustinfrancois.fr\/eloise-fournier\/"},"modified":"2024-10-29T10:20:51","modified_gmt":"2024-10-29T10:20:51","slug":"eloise-fournier","status":"publish","type":"page","link":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/","title":{"rendered":"Elo\u00efse Fournier"},"content":{"rendered":"<p>[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; background_color=&#8221;#e9e8e9&#8243; global_colors_info=&#8221;{}&#8221;][et_pb_row column_structure=&#8221;1_2,1_2&#8243; _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; max_width=&#8221;80vw&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_code _builder_version=&#8221;4.27.2&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; custom_css_free_form=&#8221;||.gallery-container {||    position: relative;||    max-width: 600px;||}||||.gallery {||    display: flex;||    overflow: hidden;||    width: 100%;||}||||.gallery img {||    display: none;||  \tborder-radius:15px;||    left: 100%;||    transition: transform 1s ease;||}||.gallery img.active {||  \tmax-height: 700px;||  \tobject-fit: contain;||    display: block;||    transform: translateX(0);||    opacity: 1;||}||||.gallery img.outgoing {||    transform: translateX(-100%);||    opacity: 0;||}||||.gallery img.incoming {||    display: block;||    transform: translateX(100%);||    opacity: 0;||}||||||.dots-container {||    position: absolute;||    bottom: 20px;||    left: 50%;||    transform: translateX(-50%);||    display: flex;||    justify-content: center;||    align-items: center;||}||||.dot {||    height: 15px;||    width: 15px;||    margin: 0 5px;||    background-color: #bbb;||    border-radius: 50%;||    display: inline-block;||    cursor: pointer;||    transition: background-color 0.6s ease;||}||.dot.active {||    background-color: #717171;||}&#8221; global_colors_info=&#8221;{}&#8221; sticky_enabled=&#8221;0&#8243;]<\/p>\n<div class=\"gallery-container\"><!-- [et_pb_line_break_holder] -->        <\/p>\n<div class=\"gallery\"><!-- [et_pb_line_break_holder] -->          <img decoding=\"async\" src=\"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2024\/07\/MaitresFournier2-scaled.jpg\" alt=\"Maitre Fournier - Avocate \u00e0 Dijon dans les jardins du cabinet\" class=\"active\"><!-- [et_pb_line_break_holder] -->            <img decoding=\"async\" src=\"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2024\/07\/MaitresFournier3-scaled.jpg\" alt=\"Maitre Fournier - Avocate \u00e0 Dijon dans son bureau\"><!-- [et_pb_line_break_holder] -->            <img decoding=\"async\" src=\"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2024\/07\/MaitresFournier4-scaled.jpg\" alt=\"Maitre Fournier - Avocate \u00e0 Dijon\"><!-- [et_pb_line_break_holder] -->        <\/div>\n<p><!-- [et_pb_line_break_holder] -->        <\/p>\n<div class=\"dots-container\"><!-- [et_pb_line_break_holder] -->            <span class=\"dot\" onclick=\"currentImage(0)\"><\/span><!-- [et_pb_line_break_holder] -->            <span class=\"dot\" onclick=\"currentImage(1)\"><\/span><!-- [et_pb_line_break_holder] -->            <span class=\"dot\" onclick=\"currentImage(2)\"><\/span><!-- [et_pb_line_break_holder] -->        <\/div>\n<p><!-- [et_pb_line_break_holder] -->    <\/div>\n<p><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><script><!-- [et_pb_line_break_holder] -->let currentIndex = 0;<!-- [et_pb_line_break_holder] -->let timer;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function changeImage(index) {<!-- [et_pb_line_break_holder] -->    const images = document.querySelectorAll('.gallery img');<!-- [et_pb_line_break_holder] -->    const dots = document.querySelectorAll('.dot');<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->    if (index === currentIndex) return; \/\/ If the same index is clicked, do nothing<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->    const outgoingIndex = currentIndex;<!-- [et_pb_line_break_holder] -->    currentIndex = index;<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->    images[outgoingIndex].classList.remove('active');<!-- [et_pb_line_break_holder] -->    images[outgoingIndex].classList.add('outgoing');<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->    images[currentIndex].classList.add('incoming');<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->    setTimeout(() => {<!-- [et_pb_line_break_holder] -->        images[outgoingIndex].classList.remove('outgoing');<!-- [et_pb_line_break_holder] -->        images[currentIndex].classList.remove('incoming');<!-- [et_pb_line_break_holder] -->        images[currentIndex].classList.add('active');<!-- [et_pb_line_break_holder] -->    }, 50); \/\/ Allow the browser to apply the CSS classes before removing them<!-- [et_pb_line_break_holder] -->    <!-- [et_pb_line_break_holder] -->    dots[outgoingIndex].classList.remove('active');<!-- [et_pb_line_break_holder] -->    dots[currentIndex].classList.add('active');<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function currentImage(index) {<!-- [et_pb_line_break_holder] -->    clearInterval(timer);<!-- [et_pb_line_break_holder] -->    changeImage(index);<!-- [et_pb_line_break_holder] -->    timer = setInterval(nextImage, 7000);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->function nextImage() {<!-- [et_pb_line_break_holder] -->    let nextIndex = (currentIndex + 1) % document.querySelectorAll('.gallery img').length;<!-- [et_pb_line_break_holder] -->    changeImage(nextIndex);<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] -->document.addEventListener('DOMContentLoaded', () => {<!-- [et_pb_line_break_holder] -->    const dots = document.querySelectorAll('.dot');<!-- [et_pb_line_break_holder] -->    dots[currentIndex].classList.add('active');<!-- [et_pb_line_break_holder] -->    document.querySelectorAll('.gallery img')[currentIndex].classList.add('active');<!-- [et_pb_line_break_holder] -->    timer = setInterval(nextImage, 7000);<!-- [et_pb_line_break_holder] -->});<!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><!-- [et_pb_line_break_holder] --><\/script>[\/et_pb_code][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_text _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;]Lawyer[\/et_pb_text][et_pb_text _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; header_font_size_tablet=&#8221;&#8221; header_font_size_phone=&#8221;36px&#8221; header_font_size_last_edited=&#8221;on|phone&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<h1>Ma\u00eetre Eloise Fournier<\/h1>\n<p>Eloise Fournier has a background in business and economic law. After initial experience in liability litigation at the Chalon sur Sa\u00f4ne Bar, she moved to Dijon to focus on family law and its liquidation aspects.[\/et_pb_text][et_pb_accordion open_toggle_background_color=&#8221;RGBA(255,255,255,0)&#8221; closed_toggle_background_color=&#8221;RGBA(255,255,255,0)&#8221; icon_color=&#8221;#000000&#8243; use_icon_font_size=&#8221;on&#8221; icon_font_size=&#8221;34px&#8221; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; toggle_font_size=&#8221;25px&#8221; border_color_right=&#8221;RGBA(255,255,255,0)&#8221; border_color_left=&#8221;RGBA(255,255,255,0)&#8221; global_colors_info=&#8221;{}&#8221;][et_pb_accordion_item title=&#8221;Formation&#8221; open=&#8221;on&#8221; _builder_version=&#8221;4.27.0&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221;]<\/p>\n<p>Graduated in Business Law<br \/>\nMaster\u2019s Degree in Economic and Business Law<br \/>\nCRFPA Paris II-Assas<br \/>\nAdmission to the bar <\/p>\n<p>[\/et_pb_accordion_item][et_pb_accordion_item title=&#8221;Professional experience&#8221; _builder_version=&#8221;4.24.2&#8243; _module_preset=&#8221;default&#8221; global_colors_info=&#8221;{}&#8221; open=&#8221;off&#8221;]<\/p>\n<p>&#8211; Eloise Fournier completed her secondary school studies at the French School (Lyc\u00e9e Fran\u00e7ais) of Torino (Italy) before studying in France. Therefore, she is fluent in Italian. She started her career as a lawyer in Chalon sur Saone (20005-2007) , at Mr Cuinat\u2019s practice and worked more particularly in general liability litigation cases (involving banks, insurance companies, notaires, doctors, builders etc&#8230;)<\/p>\n<p>&#8211; Eloise Fournier joined the Cabinet BONFILS as an associate in September 2007.<\/p>\n<p>She developed areas of expertise which are complementary to those of Jean Christophe BONFILS: Family Law (divorce, alimony, separation) , cases before the Juvenile Court, litigation linked to driver\u2019s licence , particularly defects resulting from non compliance to proper implementation of speed cameras <\/p>\n<p>In addition, Eloise Fournier had a strong education in business law and has practiced regularly liability litigation cases, banking law or insurance law.<\/p>\n<p>[\/et_pb_accordion_item][\/et_pb_accordion][\/et_pb_column][\/et_pb_row][\/et_pb_section]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LawyerMa\u00eetre Eloise Fournier Eloise Fournier has a background in business and economic law. After initial experience in liability litigation at the Chalon sur Sa\u00f4ne Bar, she moved to Dijon to focus on family law and its liquidation aspects.Graduated in Business Law Master\u2019s Degree in Economic and Business Law CRFPA Paris II-Assas Admission to the bar [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":360,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-1962","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS<\/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:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS\" \/>\n<meta property=\"og:description\" content=\"LawyerMa\u00eetre Eloise Fournier Eloise Fournier has a background in business and economic law. After initial experience in liability litigation at the Chalon sur Sa\u00f4ne Bar, she moved to Dijon to focus on family law and its liquidation aspects.Graduated in Business Law Master\u2019s Degree in Economic and Business Law CRFPA Paris II-Assas Admission to the bar [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/\" \/>\n<meta property=\"og:site_name\" content=\"Cabinet d&#039;avocats BONFILS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100057333713365\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-29T10:20:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2010\/08\/arton2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"250\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/\",\"url\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/\",\"name\":\"Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/wp-content\\\/uploads\\\/2010\\\/08\\\/arton2.jpg\",\"datePublished\":\"2010-08-30T19:20:00+00:00\",\"dateModified\":\"2024-10-29T10:20:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/wp-content\\\/uploads\\\/2010\\\/08\\\/arton2.jpg\",\"contentUrl\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/wp-content\\\/uploads\\\/2010\\\/08\\\/arton2.jpg\",\"width\":1920,\"height\":250},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/eloise-fournier\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Elo\u00efse Fournier\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/\",\"name\":\"Cabinet d'avocats BONFILS Dijon\",\"description\":\"Cabinet d&#039;avocats BONFILS\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#organization\",\"name\":\"cabinet Bonfils\",\"url\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Bonfils_logo.png\",\"contentUrl\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Bonfils_logo.png\",\"width\":704,\"height\":250,\"caption\":\"cabinet Bonfils\"},\"image\":{\"@id\":\"https:\\\/\\\/www.avocatsbonfilsdijon.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=100057333713365\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS","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:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/","og_locale":"en_US","og_type":"article","og_title":"Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS","og_description":"LawyerMa\u00eetre Eloise Fournier Eloise Fournier has a background in business and economic law. After initial experience in liability litigation at the Chalon sur Sa\u00f4ne Bar, she moved to Dijon to focus on family law and its liquidation aspects.Graduated in Business Law Master\u2019s Degree in Economic and Business Law CRFPA Paris II-Assas Admission to the bar [&hellip;]","og_url":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/","og_site_name":"Cabinet d&#039;avocats BONFILS","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100057333713365","article_modified_time":"2024-10-29T10:20:51+00:00","og_image":[{"width":1920,"height":250,"url":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2010\/08\/arton2.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/","url":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/","name":"Elo\u00efse Fournier - Cabinet d&#039;avocats BONFILS","isPartOf":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/#primaryimage"},"image":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/#primaryimage"},"thumbnailUrl":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2010\/08\/arton2.jpg","datePublished":"2010-08-30T19:20:00+00:00","dateModified":"2024-10-29T10:20:51+00:00","breadcrumb":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/#primaryimage","url":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2010\/08\/arton2.jpg","contentUrl":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2010\/08\/arton2.jpg","width":1920,"height":250},{"@type":"BreadcrumbList","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/eloise-fournier\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.avocatsbonfilsdijon.com\/en\/"},{"@type":"ListItem","position":2,"name":"Elo\u00efse Fournier"}]},{"@type":"WebSite","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#website","url":"https:\/\/www.avocatsbonfilsdijon.com\/en\/","name":"Cabinet d'avocats BONFILS Dijon","description":"Cabinet d&#039;avocats BONFILS","publisher":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.avocatsbonfilsdijon.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#organization","name":"cabinet Bonfils","url":"https:\/\/www.avocatsbonfilsdijon.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2024\/10\/Bonfils_logo.png","contentUrl":"https:\/\/www.avocatsbonfilsdijon.com\/wp-content\/uploads\/2024\/10\/Bonfils_logo.png","width":704,"height":250,"caption":"cabinet Bonfils"},"image":{"@id":"https:\/\/www.avocatsbonfilsdijon.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100057333713365"]}]}},"_links":{"self":[{"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/pages\/1962","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/comments?post=1962"}],"version-history":[{"count":14,"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/pages\/1962\/revisions"}],"predecessor-version":[{"id":3329,"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/pages\/1962\/revisions\/3329"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/media\/360"}],"wp:attachment":[{"href":"https:\/\/www.avocatsbonfilsdijon.com\/en\/wp-json\/wp\/v2\/media?parent=1962"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}