Compare commits
14 Commits
e24d46a49d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 568ceaaf6a | |||
| 37054d3f60 | |||
| 5b22381d2e | |||
| 39096fcaab | |||
| 325dc9d158 | |||
| d327efb42c | |||
| adb45de474 | |||
| 922a207bc7 | |||
| 599ca3c560 | |||
| a0bc81ea52 | |||
|
|
82f50e0699 | ||
|
|
d321745115 | ||
|
|
749b579153 | ||
|
|
bd29d6e31a |
39
.htaccess
Normal file
39
.htaccess
Normal 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>
|
||||||
|
|
||||||
9
404
9
404
@@ -92,7 +92,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -101,7 +101,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
8
appache/.htaccess
Normal file
8
appache/.htaccess
Normal 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
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -123,7 +123,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
9
contact
9
contact
@@ -111,7 +111,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -120,7 +120,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
@@ -117,7 +117,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -126,7 +126,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
@@ -143,7 +143,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -152,7 +152,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
@@ -124,7 +124,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -133,7 +133,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
6
faq
6
faq
@@ -209,7 +209,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -225,7 +225,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
<script type="application/ld+json">
|
<!--<script type="application/ld+json">
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
"@type": "FAQPage",
|
"@type": "FAQPage",
|
||||||
@@ -360,7 +360,7 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
</script>
|
</script>-->
|
||||||
<script type="application/ld+json">
|
<script type="application/ld+json">
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "https://schema.org",
|
||||||
|
|||||||
30
honoraires
30
honoraires
@@ -149,7 +149,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -158,7 +158,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
@@ -166,7 +171,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</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>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
16
index.html
16
index.html
@@ -17,7 +17,7 @@
|
|||||||
<meta property="og:image:type" content="image/png">
|
<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 property="og:image" content="https://pasteuravocate.com/assets/img/logo-carre-charline-pasteur-avocate.png" />
|
||||||
<meta name="google-site-verification" content="-X9XGuUzpSbSWFRTUk3l4heVPExO9qvc38BA0WhlnHc" />
|
<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 property="og:image:height" content="300">-->
|
||||||
<meta name="apple-mobile-web-app-title" content="Charline Pasteur Avocate" />
|
<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>-->
|
<!--<link rel="preload" href="assets/fonts/WorkSans-Regular.woff2" as="font" type="font/woff2" crossorigin>-->
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
<a href="/">
|
<a href="/">
|
||||||
<img src="assets/img/logo-charline-pasteur-avocate.webp" width="363" height="261"
|
<img src="assets/img/logo-charline-pasteur-avocate.webp" width="363" height="261"
|
||||||
alt="Logo de Charline Pasteur Avocate">
|
alt="Logo de Charline Pasteur Avocate">
|
||||||
<span>Charline Pasteur, Avocate</span>
|
<strong>Charline Pasteur, Avocate</strong>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -94,7 +94,8 @@
|
|||||||
<source srcset="assets/img/avocat-droit-enfants-charline-pasteur-mobile.webp" media="(max-width: 849px)">
|
<source srcset="assets/img/avocat-droit-enfants-charline-pasteur-mobile.webp" media="(max-width: 849px)">
|
||||||
<!-- Image pour desktop -->
|
<!-- Image pour desktop -->
|
||||||
<img src="assets/img/avocat-droit-enfants-charline-pasteur.webp"
|
<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" fetchpriority="high">
|
alt="Avocate spécialisée en droit des enfants à Nantes" class="banner-img" width="1920" height="803"
|
||||||
|
fetchpriority="high">
|
||||||
</picture>
|
</picture>
|
||||||
</section>
|
</section>
|
||||||
<main>
|
<main>
|
||||||
@@ -211,7 +212,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -220,7 +221,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
|
|||||||
30
mentions
30
mentions
@@ -178,7 +178,7 @@
|
|||||||
<section class="section-contact">
|
<section class="section-contact">
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<a href="contact" class="btn-contact">Contact</a>
|
<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>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
@@ -187,7 +187,12 @@
|
|||||||
<footer class="site-footer">
|
<footer class="site-footer">
|
||||||
<div class="footer-main">
|
<div class="footer-main">
|
||||||
<div class="footer-center">
|
<div class="footer-center">
|
||||||
<p>© 2025 - Maître Charline Pasteur</p>
|
<p>© 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>
|
<p>Contenu protégé, illustrations © Marion Monnier (creayon.fr)</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-right">
|
<div class="footer-right">
|
||||||
@@ -195,7 +200,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</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/mentions"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
|
|||||||
31
style-min.css
vendored
31
style-min.css
vendored
@@ -186,7 +186,6 @@ body {
|
|||||||
text-align: justify
|
text-align: justify
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-center,
|
|
||||||
.section-contact,
|
.section-contact,
|
||||||
a h3,
|
a h3,
|
||||||
h1,
|
h1,
|
||||||
@@ -194,11 +193,31 @@ h2 {
|
|||||||
text-align: center
|
text-align: center
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-center,
|
|
||||||
.specialiste {
|
.specialiste {
|
||||||
flex-grow: 1
|
flex-grow: 1
|
||||||
}
|
}
|
||||||
|
.footer-main {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between; /* centre gauche/droite */
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap; /* pour mobile */
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-center {
|
||||||
|
flex: 1;
|
||||||
|
text-align: center; /* centre le contenu */
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-center p {
|
||||||
|
display: inline-flex; /* contenu centré en ligne */
|
||||||
|
align-items: center;
|
||||||
|
gap: 6px; /* petit espace entre texte et logo */
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-center p a img {
|
||||||
|
position: relative;
|
||||||
|
top: 1px; /* léger ajustement vertical si besoin */
|
||||||
|
}
|
||||||
.specialiste img {
|
.specialiste img {
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
@@ -246,8 +265,7 @@ h2 {
|
|||||||
.btn-phone {
|
.btn-phone {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: .5rem;
|
font-size:0.9rem;
|
||||||
font-size: 1rem;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@@ -256,9 +274,10 @@ h2 {
|
|||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position-y: 6px;
|
background-position-y: 6px;
|
||||||
background-position-x: 6px;
|
background-position-x: 6px;
|
||||||
background-size: 40px 40px;
|
background-size: 30px 35px;
|
||||||
padding: .8rem 1rem .8rem 3rem;
|
padding: .8rem 1rem .8rem 3rem;
|
||||||
background-color: #b00f2e
|
background-color: #b00f2e;
|
||||||
|
width : 5.9rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menuXL,
|
#menuXL,
|
||||||
|
|||||||
Reference in New Issue
Block a user