1
0

seo_meta.html 976 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {% comment %}
  2. Template pour les métadonnées SEO
  3. À inclure dans la section <head> des pages d'articles
  4. {% endcomment %}
  5. {% if page.canonical_url %}
  6. <!-- URL Canonical pour éviter le duplicate content -->
  7. <link rel="canonical" href="{{ page.canonical_url }}" />
  8. {% endif %}
  9. {% if page.og_tags %}
  10. <!-- Open Graph pour Facebook et LinkedIn -->
  11. {% for key, value in page.og_tags.items %}
  12. <meta property="{{ key }}" content="{{ value }}" />
  13. {% endfor %}
  14. {% endif %}
  15. {% if page.twitter_cards %}
  16. <!-- Twitter Cards -->
  17. {% for key, value in page.twitter_cards.items %}
  18. <meta name="{{ key }}" content="{{ value }}" />
  19. {% endfor %}
  20. {% endif %}
  21. {% if page.article_schema %}
  22. <!-- Schema.org JSON-LD pour l'article -->
  23. <script type="application/ld+json">
  24. {{ page.article_schema|safe }}
  25. </script>
  26. {% endif %}
  27. {% if page.breadcrumb_schema %}
  28. <!-- Schema.org JSON-LD pour le fil d'Ariane -->
  29. <script type="application/ld+json">
  30. {{ page.breadcrumb_schema|safe }}
  31. </script>
  32. {% endif %}