_open-graph.html 1.6 KB

123456789101112131415161718192021222324
  1. <!-- Twitter Cards -->
  2. <meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
  3. {% if page.excerpt %}<meta name="twitter:description" content="{{ page.excerpt | strip_html }}">{% endif %}
  4. {% if site.owner.twitter %}<meta name="twitter:site" content="@{{ site.owner.twitter }}">{% endif %}
  5. {% if author.twitter %}<meta name="twitter:creator" content="@{{ author.twitter }}">{% endif %}
  6. {% if page.image.feature %}
  7. <meta name="twitter:card" content="summary_large_image">
  8. <meta name="twitter:image" content="{{ site.url }}/images/{{ page.image.feature }}">
  9. {% else %}
  10. <meta name="twitter:card" content="summary">
  11. <meta name="twitter:image" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/default-thumb.png{% endif %}">
  12. {% endif %}
  13. <!-- Open Graph -->
  14. <meta property="og:locale" content="{{ site.locale }}">
  15. <meta property="og:type" content="article">
  16. <meta property="og:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
  17. {% if page.excerpt %}<meta property="og:description" content="{{ page.excerpt | strip_html }}">{% endif %}
  18. <meta property="og:url" content="{{ page.url | replace:'index.html','' | prepend: site.url }}">
  19. <meta property="og:site_name" content="{{ site.title }}">
  20. {% if page.image.feature %}
  21. <meta property="og:image" content="{{ site.url }}/images/{{ page.image.feature }}">
  22. {% else %}
  23. <meta property="og:image" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/default-thumb.png{% endif %}">
  24. {% endif %}