Compare commits

...

34 Commits

Author SHA1 Message Date
568ceaaf6a Update sitemap.xml 2025-09-10 16:08:50 +02:00
37054d3f60 FEAT : Ajout pied de page 2025-09-10 15:06:08 +02:00
5b22381d2e FEAT : Ajout pied de page 2025-09-10 15:05:07 +02:00
39096fcaab FEAT : Ajout pied de page 2025-09-10 15:04:29 +02:00
325dc9d158 FEAT : Ajout pied de page 2025-09-10 15:00:29 +02:00
d327efb42c FEAT : Ajout pied de page 2025-09-10 14:59:55 +02:00
adb45de474 FEAT : Ajout pied de page 2025-09-10 14:59:16 +02:00
922a207bc7 FEAT : Ajout pied de page 2025-09-10 14:58:32 +02:00
599ca3c560 FEAT : Ajout pied de page 2025-09-10 14:57:50 +02:00
a0bc81ea52 Ajout du htaccess pour redirection www des pages et cache serveur 2025-09-10 14:56:11 +02:00
Anthony Mahé
82f50e0699 feat : htaccess redirection 2025-09-04 14:28:44 +02:00
Anthony Mahé
d321745115 FIX : Ajout breadcrumb nonoraires et mentions 2025-09-03 16:59:35 +02:00
Anthony Mahé
749b579153 FIX : Espaces dans num téléphone + centrage linkedin 2025-09-02 14:29:34 +02:00
Anthony Mahé
bd29d6e31a suppression données structurées FAQ 2025-09-02 13:46:27 +02:00
Anthony Mahe
e24d46a49d Style bouton webp 2025-09-01 21:45:49 +02:00
Anthony Mahe
ad487bd2d8 Passage des icones en webp 2025-09-01 21:43:17 +02:00
Anthony Mahe
5caed41bb4 Ajout etchpriority="high" 2025-08-31 16:09:31 +02:00
Anthony Mahe
1f3aec78b5 Lazy loadin false pour image au dessus ligne flotaison 2025-08-31 15:42:01 +02:00
Anthony Mahe
7aab0dedf9 Modification orange pour accessibilité 2025-08-31 15:41:45 +02:00
Anthony Mahe
b766bce5a3 FIX Favicon sur Bing 2025-08-29 21:16:42 +02:00
Anthony Mahe
77c8a1f081 FIX CSS : Suppression puce list-style dans le sous menu 2025-08-26 21:56:13 +02:00
Anthony Mahe
0d3f7c114f FIX : Avocate spécialiste au lieu de spécialisée 2025-08-26 21:44:46 +02:00
Anthony Mahe
9f19882185 FAQ en construction 2025-08-26 21:37:54 +02:00
Anthony Mahé
4fedf3dac3 FIX : Suppression script.js 2025-08-26 16:04:11 +02:00
Anthony Mahé
5dce1e4ba8 maj Graph data avec legalservice et image 2025-08-26 16:00:21 +02:00
Anthony Mahé
f91117592d MAJ Graph data avec images et services Nantes et Pays de la Loire 2025-08-26 15:37:24 +02:00
Anthony Mahe
b9deb7edec Suppression FAQ sur page index 2025-08-25 20:36:38 +02:00
Anthony Mahe
a4b0ddf5de donnée enrichies contact 2025-08-25 20:18:32 +02:00
Anthony Mahe
d8282aaa01 minify css 2025-08-25 20:13:29 +02:00
Anthony Mahe
f090e0b760 fix : FAQ parent 2025-08-25 20:11:23 +02:00
Anthony Mahe
ed2f89595f Renomage en 404 2025-08-25 20:09:56 +02:00
Anthony Mahé
69e7be1c78 ajout breadcrumb FAQ 2025-08-25 16:29:47 +02:00
Anthony Mahé
a718869257 Optim meta 2025-08-25 15:23:52 +02:00
Anthony Mahé
e50979aa53 Ajout Balise og 2025-08-25 15:20:04 +02:00
20 changed files with 1365 additions and 355 deletions

39
.htaccess Normal file
View File

@@ -0,0 +1,39 @@
RewriteEngine On
# --- 1) Redirections spécifiques (PLACÉES AVANT le canonical) ---
Redirect 301 /faq.html https://pasteuravocate.com/faq
Redirect 301 /contact.html https://pasteuravocate.com/contact
Redirect 301 /mentions.html https://pasteuravocate.com/mentions
Redirect 301 /honoraires.html https://pasteuravocate.com/honoraires
Redirect 301 /assistance-educative.html https://pasteuravocate.com/assistance-educative
Redirect 301 /droit-penal-mineur.html https://pasteuravocate.com/droit-penal-mineur
Redirect 301 /droit-etrangers.html https://pasteuravocate.com/droit-etrangers
Redirect 301 /droit-education.html https://pasteuravocate.com/droit-education
# --- 2) Canonical : HTTPS + non-www (conserve le chemin + query) ---
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} ^www\.pasteuravocate\.com$ [NC]
RewriteRule ^ https://pasteuravocate.com%{REQUEST_URI} [L,R=301]
# --- 3) Cache navigateur (images + CSS/JS) ---
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/webp "access plus 6 months"
ExpiresByType image/png "access plus 6 months"
ExpiresByType image/jpeg "access plus 6 months"
ExpiresByType image/gif "access plus 6 months"
ExpiresByType image/svg+xml "access plus 6 months"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
</IfModule>
<IfModule mod_headers.c>
<FilesMatch "\.(webp|png|jpe?g|gif|svg|ico)$">
Header set Cache-Control "public, max-age=15552000, immutable"
</FilesMatch>
<FilesMatch "\.(css|js)$">
Header set Cache-Control "public, max-age=2592000"
</FilesMatch>
</IfModule>

View File

@@ -5,16 +5,26 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Erreur 404 - Page non trouvée sur le site Charline Pasteur</title>
<meta name="description" content="Erreur 404 - Page non trouvée" />
<title>Mentions légales avocate à Nantes - Charline Pasteur</title>
<meta name="description" content="Mentions légales." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Mentions légales avocate à Nantes - Charline Pasteur" />
<meta property="og:description" content="Mentions légales." />
<meta property="og:url" content="https://pasteuravocate.com/mentions" />
<meta property="og:image" content="https://pasteuravocate.com/assets/img/logo-carre-charline-pasteur-avocate.png" />
<!--<link rel="preload" href="assets/fonts/WorkSans-Regular.woff2" as="font" type="font/woff2" crossorigin>-->
<!--<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="class.css" />
<link rel="stylesheet" href="navigation.css" />-->
<link rel="stylesheet" href="style-min.css" />
<link rel="canonical" href="https://pasteuravocate.com/droit-penal-mineur" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/404.html" />
<link rel="alternate" hreflang="fr-FR" href="https://pasteuravocate.com/404.html" />
<link rel="canonical" href="https://pasteuravocate.com/404" />
<link rel="alternate" hreflang="fr-FR" href="https://pasteuravocate.com/404" />
</head>
<body>
@@ -48,7 +58,6 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -62,7 +71,6 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -76,15 +84,15 @@
<source srcset="assets/img/404.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/404.webp"
alt="Page introuvable" class="banner-img" width="1920" height="1425">
alt="Page introuvable" class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<h1>Erreur: la page n'as pas été trouvée !</h1>
<h1>Erreur : la page n'as pas été trouvée !</h1>
<main>
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -93,7 +101,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -101,7 +114,7 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
</body>
</html>

8
appache/.htaccess Normal file
View File

@@ -0,0 +1,8 @@
Redirect 301 /faq.html https://pasteuravocate.com/faq
Redirect 301 /contact.html https://pasteuravocate.com/contact
Redirect 301 /mentions.html https://pasteuravocate.com/mentions
Redirect 301 /honoraires.html https://pasteuravocate.com/honoraires
Redirect 301 /assistance-educative.html https://pasteuravocate.com/assistance-educative
Redirect 301 /droit-penal-mineur.html https://pasteuravocate.com/droit-penal-mineur
Redirect 301 /droit-etrangers.html https://pasteuravocate.com/droit-etrangers
Redirect 301 /droit-education.html https://pasteuravocate.com/droit-education

BIN
assets/img/form.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
assets/img/in.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

BIN
assets/img/phone.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -15,14 +15,10 @@
content="Informations juridiques et accompagnement en matière d'assistance éducative à Nantes et Pays de la Loire." />
<meta property="og:url" content="https://pasteuravocate.com/assistance-educative" />
<meta property="og:image" content="https://pasteuravocate.com/assets/img/logo-carre-charline-pasteur-avocate.png" />
<!--<link rel="preload" href="assets/fonts/WorkSans-Regular.woff2" as="font" type="font/woff2" crossorigin>-->
<!--<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="class.css" />
<link rel="stylesheet" href="navigation.css" />-->
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/assistance-educative" />
@@ -61,7 +57,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -75,7 +71,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -87,7 +83,7 @@
<picture>
<!-- Image pour desktop -->
<img src="assets/img/avocat-assistance-educative-charline-pasteur.webp"
alt="Avocat en assistance éducative à Nantes" class="banner-img" width="1920" height="1425">
alt="Avocat en assistance éducative à Nantes" class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<main>
@@ -118,7 +114,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -127,7 +123,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -135,26 +136,74 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
"@graph": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
"@type": "BreadcrumbList",
"@id": "https://pasteuravocate.com/assistance-educative#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Assistance éducative",
"item": "https://pasteuravocate.com/assistance-educative"
}
]
},
{
"@type": "ListItem",
"position": 2,
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice",
"name": "Charline Pasteur Avocate",
"url": "https://pasteuravocate.com",
"logo": "https://pasteuravocate.com/assets/img/logo-charline-pasteur-avocate.png",
"image": "https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs.webp",
"telephone": "+33-6-85-98-56-45",
"address": {
"@type": "PostalAddress",
"streetAddress": "3 Rue Maurice Duval",
"addressLocality": "Nantes",
"postalCode": "44000",
"addressCountry": "FR"
}
},
{
"@type": "Service",
"@id": "https://pasteuravocate.com/assistance-educative#service",
"name": "Assistance éducative",
"item": "https://pasteuravocate.com/assistance-educative"
"description": "Accompagnement juridique spécialisé en assistance éducative : représentation devant le juge des enfants, suivi des mesures éducatives et conseil aux familles.",
"provider": {
"@id": "https://pasteuravocate.com/#legalservice"
},
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
],
"serviceType": "Conseil et représentation juridique en assistance éducative",
"url": "https://pasteuravocate.com/assistance-educative",
"image": {
"@type": "ImageObject",
"url": "https://pasteuravocate.com/assets/img/avocat-assistance-educative-charline-pasteur.webp",
"width": 1920,
"height": 1425
}
}
]
}
}
</script>
</body>

View File

@@ -231,11 +231,11 @@
}
.btn-phone {
background-image: url('assets/img/phone.png');
background-image: url('assets/img/phone.webp');
}
.btn-contact {
background-image: url('assets/img/form.svg');
background-image: url('assets/img/form.webp');
}
.btn-phone:hover,

85
contact
View File

@@ -21,7 +21,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/contact" />
@@ -60,7 +60,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact" class="active">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -74,7 +74,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact" class="active">Contact</a></li>
</ul>
</li>
@@ -88,7 +88,7 @@
<source srcset="assets/img/avocat-droit-enfants-charline-pasteur-mobile.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-enfants-charline-pasteur.webp"
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803">
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803" fetchpriority="high">
</picture>
</section>
<main>
@@ -111,7 +111,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -120,7 +120,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -128,7 +133,73 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice",
"name": "Charline Pasteur Avocate",
"url": "https://pasteuravocate.com/contact",
"image": "https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs.webp",
"logo": "https://pasteuravocate.com/assets/img/logo-charline-pasteur-avocate.webp",
"telephone": "+33-6-85-98-56-45",
"email": "contact@pasteuravocate.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "3 Rue Maurice Duval",
"addressLocality": "Nantes",
"postalCode": "44000",
"addressCountry": "FR"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 47.2156,
"longitude": -1.5541
},
"openingHours": [
"Mo-Fr 09:00-12:00",
"Mo-Fr 14:00-17:00"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+33-6-85-98-56-45",
"contactType": "customer service",
"availableLanguage": ["French"]
},
"sameAs": [
"https://www.barreaunantes.fr/annuaire/charline-pasteur/",
"https://www.justifit.fr/avocats/avocat-nantes-maitre-charline-pasteur-89486/",
"https://www.pagesjaunes.fr/pros/64181486",
"https://justice.pappers.fr/avocat/pasteur-charline-44000",
"https://www.linkedin.com/in/charline-pasteur-a3550650",
"https://www.france-avocat.net/avocat/maitre-charline-pasteur/"
]
},
{
"@type": "BreadcrumbList",
"@id": "https://pasteuravocate.com/contact#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Contact",
"item": "https://pasteuravocate.com/contact"
}
]
}
]
}
</script>
</body>
</html>

View File

@@ -21,7 +21,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/droit-education" />
@@ -60,7 +60,7 @@
<li><a href="droit-education" class="active">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -74,7 +74,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -88,7 +88,7 @@
<source srcset="assets/img/avocat-droit-education-charline-pasteur.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-education-charline-pasteur.webp"
alt="Avocat en droit de l'éducation et de la famille à Nantes" class="banner-img" width="1920" height="1425">
alt="Avocat en droit de l'éducation et de la famille à Nantes" class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<main>
@@ -117,7 +117,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -126,7 +126,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -134,23 +139,71 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit de l'éducation",
"item": "https://pasteuravocate.com/droit-education"
"@context": "https://schema.org",
"@graph": [
{
"@type": "BreadcrumbList",
"@id": "https://pasteuravocate.com/droit-education#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit de l'éducation",
"item": "https://pasteuravocate.com/droit-education"
}
]
},
{
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice",
"name": "Charline Pasteur Avocate",
"url": "https://pasteuravocate.com",
"logo": "https://pasteuravocate.com/assets/img/logo-charline-pasteur-avocate.png",
"image": "https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs.webp",
"telephone": "+33-6-85-98-56-45",
"address": {
"@type": "PostalAddress",
"streetAddress": "3 Rue Maurice Duval",
"addressLocality": "Nantes",
"postalCode": "44000",
"addressCountry": "FR"
}
},
{
"@type": "Service",
"@id": "https://pasteuravocate.com/droit-education#service",
"name": "Droit de l'éducation",
"description": "Accompagnement juridique spécialisé en droit de l'éducation : contentieux scolaires, droits des élèves et des parents, relations avec l'administration.",
"provider": {
"@id": "https://pasteuravocate.com/#legalservice"
},
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
],
"serviceType": "Conseil et représentation juridique en droit de l'éducation",
"url": "https://pasteuravocate.com/droit-education",
"image": {
"@type": "ImageObject",
"url": "https://pasteuravocate.com/assets/img/avocat-droit-education-charline-pasteur.webp",
"width": 1920,
"height": 1425
}
}
]
}

View File

@@ -21,7 +21,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/droit-etrangers" />
@@ -59,7 +59,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers" class="active">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -73,7 +73,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -87,7 +87,7 @@
<source srcset="assets/img/avocat-droit-etrangers-charline-pasteur.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-etrangers-charline-pasteur.webp" alt="Avocat en droit des étrangers à Nantes"
class="banner-img" width="1920" height="1425">
class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<main>
@@ -143,7 +143,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -152,7 +152,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -160,25 +165,73 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit des étrangers",
"item": "https://pasteuravocate.com/droit-etrangers"
}
]
"@context": "https://schema.org",
"@graph": [
{
"@type": "BreadcrumbList",
"@id": "https://pasteuravocate.com/droit-etrangers#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit des étrangers",
"item": "https://pasteuravocate.com/droit-etrangers"
}
]
},
{
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice",
"name": "Charline Pasteur Avocate",
"url": "https://pasteuravocate.com",
"logo": "https://pasteuravocate.com/assets/img/logo-charline-pasteur-avocate.png",
"image": "https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs.webp",
"telephone": "+33-6-85-98-56-45",
"address": {
"@type": "PostalAddress",
"streetAddress": "3 Rue Maurice Duval",
"addressLocality": "Nantes",
"postalCode": "44000",
"addressCountry": "FR"
}
},
{
"@type": "Service",
"@id": "https://pasteuravocate.com/droit-etrangers#service",
"name": "Droit des étrangers",
"description": "Accompagnement juridique spécialisé en droit des étrangers : démarches administratives, régularisation, recours et défense devant les autorités compétentes.",
"provider": {
"@id": "https://pasteuravocate.com/#legalservice"
},
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
],
"serviceType": "Conseil et représentation juridique en droit des étrangers",
"url": "https://pasteuravocate.com/droit-etrangers",
"image": {
"@type": "ImageObject",
"url": "https://pasteuravocate.com/assets/img/avocat-droit-etrangers-charline-pasteur.webp",
"width": 1920,
"height": 1425
}
}
]
}
</script>
</body>

View File

@@ -21,7 +21,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/droit-penal-mineur" />
@@ -60,7 +60,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -74,7 +74,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -88,7 +88,7 @@
<source srcset="assets/img/avocat-droit-penal-mineur-charline-pasteur.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-penal-mineur-charline-pasteur.webp"
alt="Avocat en droit pénal des mineurs à Nantes" class="banner-img" width="1920" height="1425">
alt="Avocat en droit pénal des mineurs à Nantes" class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<main>
@@ -124,7 +124,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -133,7 +133,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -141,27 +146,74 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
"@graph": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
"@type": "BreadcrumbList",
"@id": "https://pasteuravocate.com/droit-penal-mineur#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit pénal mineur",
"item": "https://pasteuravocate.com/droit-penal-mineur"
}
]
},
{
"@type": "ListItem",
"position": 2,
"name": "Droit pénal des mineurs",
"item": "https://pasteuravocate.com/droit-penal-mineur"
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice",
"name": "Charline Pasteur Avocate",
"url": "https://pasteuravocate.com",
"logo": "https://pasteuravocate.com/assets/img/logo-charline-pasteur-avocate.png",
"image": "https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs.webp",
"telephone": "+33-6-85-98-56-45",
"address": {
"@type": "PostalAddress",
"streetAddress": "3 Rue Maurice Duval",
"addressLocality": "Nantes",
"postalCode": "44000",
"addressCountry": "FR"
}
},
{
"@type": "Service",
"@id": "https://pasteuravocate.com/droit-penal-mineur#service",
"name": "Droit pénal mineur",
"description": "Accompagnement juridique spécialisé en droit pénal des mineurs : défense devant le juge des enfants et suivi des procédures pénales.",
"provider": {
"@id": "https://pasteuravocate.com/#legalservice"
},
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
],
"serviceType": "Conseil et représentation juridique en droit pénal des mineurs",
"url": "https://pasteuravocate.com/droit-penal-mineur",
"image": {
"@type": "ImageObject",
"url": "https://pasteuravocate.com/assets/img/avocat-droit-penal-mineur-charline-pasteur.webp",
"width": 1920,
"height": 1425
}
}
]
}
</script>
</body>
</html>

53
faq
View File

@@ -5,13 +5,22 @@
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Foire aux questions - Charline Pasteur</title>
<title>Foire aux questions droit des enfants - Charline Pasteur</title>
<meta name="description"
content="Foire aux questions : réponses pour les parents et enfants sur le droit des enfants, l'assistance éducative, le droit pénal des mineurs et le droit de l'éducation." />
content="Questions : réponses pour les parents et enfants sur le droit des enfants, l'assistance éducative, le droit pénal des mineurs et le droit de l'éducation." />
<!-- Open graph facebook/instagram/whatsapp -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Foire aux questions droit des enfants - Charline Pasteur" />
<meta property="og:description"
content="Questions : réponses pour les parents et enfants sur le droit des enfants, l'assistance éducative, le droit pénal des mineurs et le droit de l'éducation." />
<meta property="og:url" content="https://pasteuravocate.com/faq" />
<meta property="og:image:type" content="image/png">
<meta property="og:image" content="https://pasteuravocate.com/assets/img/logo-carre-charline-pasteur-avocate.png" />
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/faq" />
@@ -50,7 +59,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq" class="active">FAQ</a></li>
<!--<li><a href="faq" class="active">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -64,7 +73,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq" class="active">FAQ</a></li>
<!--<a href="faq" class="active">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -75,15 +84,15 @@
<section class="banner">
<picture>
<source srcset="assets/img/questions-avocat-charline-pasteur.webp" media="(max-width: 849px)">
<img src="assets/img/questions-avocat-charline-pasteur.webp" alt="Foire aux questions" class="banner-img" width="1920" height="1425">
<img src="assets/img/questions-avocat-charline-pasteur.webp" alt="Foire aux questions" class="banner-img" width="1920" height="1425" fetchpriority="high">
</picture>
</section>
<main>
<h1>Foire aux questions</h1>
Page en construction
<!--<h1>Foire aux questions</h1>
<section class="faq-section">
<!-- ===== Questions Enfants ===== -->
<div class="faq-category">
<h2>Questions que pourraient poser des enfants</h2>
@@ -115,8 +124,6 @@
</div>
</div>
</div>
<!-- ===== Questions Parents ===== -->
<div class="faq-category">
<h2>Questions que pourraient poser des parents</h2>
@@ -197,12 +204,12 @@
</div>
</div>
</div>
</section>
</section>-->
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -218,7 +225,7 @@
</div>
</div>
</footer>
<script type="application/ld+json">
<!--<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
@@ -353,6 +360,26 @@
}
]
}
</script>-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "FAQ",
"item": "https://pasteuravocate.com/faq"
}
]
}
</script>
</body>
</html>

View File

@@ -20,7 +20,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/honoraires" />
@@ -59,7 +59,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires" class="active">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -73,7 +73,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires" class="active">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -87,7 +87,7 @@
<source srcset="assets/img/avocat-droit-enfants-charline-pasteur-mobile.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-enfants-charline-pasteur.webp"
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803">
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803" fetchpriority="high">
</picture>
</section>
<main>
@@ -149,7 +149,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -158,15 +158,39 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
<p><a href="mentions">Mentions légales</a></p>
</div>
</div>
</footer>
<script src="script.js" defer></script>
</footer>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Assistance éducative",
"item": "https://pasteuravocate.com/honoraires"
}
]
}
</script>
</body>
</html>

View File

@@ -17,7 +17,7 @@
<meta property="og:image:type" content="image/png">
<meta property="og:image" content="https://pasteuravocate.com/assets/img/logo-carre-charline-pasteur-avocate.png" />
<meta name="google-site-verification" content="-X9XGuUzpSbSWFRTUk3l4heVPExO9qvc38BA0WhlnHc" />
<!--<meta property="og:image:width" content="300">
<!--<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">-->
<meta name="apple-mobile-web-app-title" content="Charline Pasteur Avocate" />
<!--<link rel="preload" href="assets/fonts/WorkSans-Regular.woff2" as="font" type="font/woff2" crossorigin>-->
@@ -27,7 +27,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/" />
@@ -48,8 +48,8 @@
<div class="logo">
<a href="/">
<img src="assets/img/logo-charline-pasteur-avocate.webp" width="363" height="261"
alt="Logo de Charline Pasteur Avocate" loading="lazy">
<span>Charline Pasteur, Avocate</span>
alt="Logo de Charline Pasteur Avocate">
<strong>Charline Pasteur, Avocate</strong>
</a>
</div>
</div>
@@ -66,7 +66,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -80,7 +80,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -95,14 +95,14 @@
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-enfants-charline-pasteur.webp"
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803"
loading="lazy">
fetchpriority="high">
</picture>
</section>
<main>
<section id="accueil">
<div class="">
<div>
<h1>Charline Pasteur - Avocate spécialisée en droit des enfants à Nantes</h1>
<h1>Charline Pasteur - Avocate spécialiste en droit des enfants à Nantes</h1>
</div>
</div>
<div class="presentation">
@@ -112,7 +112,7 @@
title="Charline Pasteur - Avocate à Nantes en droit de la famille" srcset="assets/img/charline-pasteur-avocate-nantes-droit-mineurs-300.webp 300w,
assets/img/charline-pasteur-avocate-nantes-droit-mineurs-600.webp 600w,
assets/img/charline-pasteur-avocate-nantes-droit-mineurs-900.webp 900w"
sizes="(max-width: 849px) 80vw, 250px" width="900" height="1350" loading="lazy">
sizes="(max-width: 849px) 80vw, 250px" width="900" height="1350">
</div>
<div class="texte">
<h2>Spécialiste en droit des enfants</h2>
@@ -164,7 +164,7 @@
<img src="assets/img/logo-specialiste.webp"
alt="Logo de la spécialisation en droit des enfants délivrée par le CNB"
title="En savoir plus sur la mention de spécialisation en droit des enfants" width="200"
height="171" loading="lazy">
height="171">
</a>
</div>
</div>
@@ -209,46 +209,10 @@
</li>
</ul>
</section>
<section class="faq-home">
<h2>Questions fréquentes</h2>
<div class="faq-item">
<h4>Est-ce que mon enfant peut parler à un juge ou un éducateur en toute sécurité ?</h4>
<p>Oui. Les professionnels sont là pour l'écouter et le protéger. Ils ne partageront les informations
que si c'est nécessaire pour sa sécurité.</p>
</div>
<div class="faq-item">
<h4>Mon enfant refuse d'aller à l'école, que faire ?</h4>
<p>Il est important de comprendre la raison : peur, harcèlement ou difficultés d'apprentissage. Des
solutions existent avec l'école ou un professionnel de confiance.</p>
</div>
<div class="faq-item">
<h4>Mon enfant se sent en danger à la maison, que puis-je faire ?</h4>
<p>Vous pouvez contacter un professionnel (médecin, éducateur, assistance sociale) ou le 119 si la
situation est urgente. L'objectif est de protéger votre enfant.</p>
</div>
<div class="faq-item">
<h4>Qui décide si mon enfant doit être suivi par un éducateur ?</h4>
<p>Le juge des enfants prend cette décision, souvent après un signalement. L'objectif est de soutenir la
famille, pas de punir.</p>
</div>
<div class="faq-item">
<h4>Mon ado a été interpellé par la police, que dois-je faire ?</h4>
<p>Restez calme, assurez-vous qu'il soit accompagné d'un avocat et soyez présent pour le soutenir
pendant toute la procédure.</p>
</div>
<p><a href="/faq.html">Voir toutes nos réponses</a></p>
</section>
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -257,7 +221,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -265,7 +234,7 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
@@ -288,7 +257,16 @@
"@type": "ContactPoint",
"telephone": "+33-6-85-98-56-45",
"contactType": "customer service",
"areaServed": "FR"
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
]
},
"address": {
"@type": "PostalAddress",
@@ -323,14 +301,16 @@
"Mo-Fr 14:00-17:00"
],
"description": "Avocate spécialisée en droit des enfants, assistance éducative et droit pénal des mineurs à Nantes.",
"areaServed": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Nantes",
"addressCountry": "FR"
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
},
],
"parentOrganization": {
"@id": "https://pasteuravocate.com/#organization"
}
@@ -406,14 +386,16 @@
"@type": "LegalService",
"@id": "https://pasteuravocate.com/#legalservice"
},
"areaServed": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Nantes",
"addressCountry": "FR"
"areaServed": [
{
"@type": "City",
"name": "Nantes"
},
{
"@type": "AdministrativeArea",
"name": "Pays de la Loire"
}
},
],
"description": "Services juridiques spécialisés en droit des enfants, assistance éducative et droit pénal des mineurs à Nantes."
},
{

View File

@@ -19,7 +19,7 @@
<link rel="stylesheet" href="style-min.css" />
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="https://pasteuravocate.com/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png" />
<link rel="manifest" href="assets/img/site.webmanifest" />
<link rel="canonical" href="https://pasteuravocate.com/mentions" />
@@ -58,7 +58,7 @@
<li><a href="droit-education">Droit de l'éducation</a></li>
<li><a href="droit-etrangers">Droit des étrangers</a></li>
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
<!-- Tablette -->
@@ -72,7 +72,7 @@
<span class="dropdown-label">Autre ⏷</span>
<ul class="submenu">
<li><a href="honoraires">Honoraires</a></li>
<li><a href="faq">FAQ</a></li>
<!--<li><a href="faq">FAQ</a></li>-->
<li><a href="contact">Contact</a></li>
</ul>
</li>
@@ -86,7 +86,7 @@
<source srcset="assets/img/avocat-droit-enfants-charline-pasteur-mobile.webp" media="(max-width: 849px)">
<!-- Image pour desktop -->
<img src="assets/img/avocat-droit-enfants-charline-pasteur.webp"
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803">
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803" fetchpriority="high">
</picture>
</section>
<main>
@@ -178,7 +178,7 @@
<section class="section-contact">
<div class="btn-container">
<a href="contact" class="btn-contact">Contact</a>
<a href="tel:0685985645" class="btn-phone">0685985645</a>
<a href="tel:0685985645" class="btn-phone">06 85 98 56 45</a>
</div>
</section>
</main>
@@ -187,7 +187,12 @@
<footer class="site-footer">
<div class="footer-main">
<div class="footer-center">
<p>&copy; 2025 - Maître Charline Pasteur</p>
<p>&copy; 2025 - Maître Charline Pasteur
<a href="https://www.linkedin.com/in/charline-pasteur-a3550650"
class="card" title="consulter le profil LinkedIn de Charline Pasteur">
<img src="assets/img/in.webp" alt="Logo likedIn" width="32" height="32" loading="lazy">
</a>
</p>
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
</div>
<div class="footer-right">
@@ -195,7 +200,26 @@
</div>
</div>
</footer>
<script src="script.js" defer></script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Accueil",
"item": "https://pasteuravocate.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Assistance éducative",
"item": "https://pasteuravocate.com/mentions"
}
]
}
</script>
</body>
</html>

View File

@@ -1 +0,0 @@

View File

@@ -1,74 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url>
<loc>https://pasteuravocate.com</loc>
<priority>1.00</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-enfants-charline-pasteur.webp</image:loc>
<image:caption>Avocate spécialisée en droit des enfants à Nantes</image:caption>
</image:image>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs-900.webp</image:loc>
<image:caption>Portrait de Charline Pasteur, avocate spécialisée en droit des enfants</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/assistance-educative</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-assistance-educative-charline-pasteur.webp</image:loc>
<image:caption>Avocat en assistance éducative à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-penal-mineur</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-penal-mineur-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit pénal des mineurs à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-education</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-education-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit de l'éducation et de la famille à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-etrangers</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-etrangers-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit des étrangers à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/contact</loc>
<priority>0.80</priority>
</url>
<url>
<loc>https://pasteuravocate.com/faq</loc>
<priority>0.70</priority>
</url>
<url>
<loc>https://pasteuravocate.com/honoraires</loc>
<priority>0.70</priority>
</url>
<url>
<loc>https://pasteuravocate.com/mentions</loc>
<priority>0.60</priority>
</url>
</urlset>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
<url>
<loc>https://pasteuravocate.com</loc>
<priority>1.00</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-enfants-charline-pasteur.webp</image:loc>
<image:caption>Avocate spécialisée en droit des enfants à Nantes</image:caption>
</image:image>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/charline-pasteur-avocate-nantes-droit-mineurs-900.webp</image:loc>
<image:caption>Portrait de Charline Pasteur, avocate spécialisée en droit des enfants</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/assistance-educative</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-assistance-educative-charline-pasteur.webp</image:loc>
<image:caption>Avocat en assistance éducative à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-penal-mineur</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-penal-mineur-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit pénal des mineurs à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-education</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-education-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit de l'éducation et de la famille à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/droit-etrangers</loc>
<priority>0.80</priority>
<image:image>
<image:loc>https://pasteuravocate.com/assets/img/avocat-droit-etrangers-charline-pasteur.webp</image:loc>
<image:caption>Avocat en droit des étrangers à Nantes</image:caption>
</image:image>
</url>
<url>
<loc>https://pasteuravocate.com/contact</loc>
<priority>0.80</priority>
</url>
<url>
<loc>https://pasteuravocate.com/faq</loc>
<priority>0.70</priority>
</url>
<url>
<loc>https://pasteuravocate.com/honoraires</loc>
<priority>0.70</priority>
</url>
<url>
<loc>https://pasteuravocate.com/mentions</loc>
<priority>0.60</priority>
</url>
</urlset>

784
style-min.css vendored

File diff suppressed because one or more lines are too long