seo_meta.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% comment %}
  2. Template pour les métadonnées SEO complètes
  3. Usage: {% include 'blog/seo_meta.html' with seo=metadata %}
  4. {% endcomment %}
  5. <!-- Métadonnées de base -->
  6. <meta name="description" content="{{ seo.description }}">
  7. {% if seo.keywords %}
  8. <meta name="keywords" content="{{ seo.keywords }}">
  9. {% endif %}
  10. <meta name="author" content="Mr Duhaz">
  11. <meta name="robots" content="index, follow">
  12. <!-- URL Canonique -->
  13. {% if seo.canonical_url %}
  14. <link rel="canonical" href="{{ seo.canonical_url }}">
  15. {% endif %}
  16. <!-- Open Graph / Facebook -->
  17. <meta property="og:type" content="{{ seo.og.type|default:'website' }}">
  18. <meta property="og:title" content="{{ seo.og.title }}">
  19. <meta property="og:description" content="{{ seo.og.description }}">
  20. <meta property="og:url" content="{{ seo.og.url }}">
  21. <meta property="og:image" content="{{ seo.og.image }}">
  22. <meta property="og:site_name" content="{{ seo.og.site_name }}">
  23. <meta property="og:locale" content="{{ seo.og.locale|default:'fr_FR' }}">
  24. {% if seo.og.type == 'article' %}
  25. {% if seo.og.article:published_time %}
  26. <meta property="article:published_time" content="{{ seo.og.article:published_time }}">
  27. {% endif %}
  28. {% if seo.og.article:author %}
  29. <meta property="article:author" content="{{ seo.og.article:author }}">
  30. {% endif %}
  31. {% if seo.og.article:section %}
  32. <meta property="article:section" content="{{ seo.og.article:section }}">
  33. {% endif %}
  34. {% for tag in seo.og.article:tag %}
  35. <meta property="article:tag" content="{{ tag }}">
  36. {% endfor %}
  37. {% endif %}
  38. <!-- Twitter Card -->
  39. <meta name="twitter:card" content="{{ seo.twitter.card|default:'summary' }}">
  40. <meta name="twitter:title" content="{{ seo.twitter.title }}">
  41. <meta name="twitter:description" content="{{ seo.twitter.description }}">
  42. <meta name="twitter:image" content="{{ seo.twitter.image }}">
  43. {% if seo.twitter.site %}
  44. <meta name="twitter:site" content="{{ seo.twitter.site }}">
  45. {% endif %}
  46. <!-- Schema.org JSON-LD -->
  47. {% if seo.schema %}
  48. <script type="application/ld+json">
  49. {{ seo.schema|safe }}
  50. </script>
  51. {% endif %}