social.html 1.3 KB

123456789101112131415161718
  1. <!-- Twitter -->
  2. <meta name="twitter:card" content="{% if page.title %}summary{% else %}summary_large_image{% endif %}">
  3. <meta name="twitter:site" content="@{{ site.twitter }}">
  4. <meta name="twitter:creator" content="@{{ site.twitter }}">
  5. <meta name="twitter:title" content="{{ page.title | default: site.title | smartify }}">
  6. <meta name="twitter:description" content="{{ page.description | default: site.description | smartify }}">
  7. <meta name="twitter:image" content="{% if page.title %}{{ site.url | append: site.social_logo_path }}{% else %}{{ site.url | append: site.social_image_path }}{% endif %}">
  8. <!-- Facebook -->
  9. <meta property="og:url" content="{{ site.url | append: page.url }}">
  10. <meta property="og:title" content="{{ page.title | default: site.title | smartify }}">
  11. <meta property="og:description" content="{{ page.description | default: site.description | smartify }}">
  12. <meta property="og:type" content="website">
  13. <meta property="og:image" content="{{ site.url | replace: 'https://', 'http://' | append: site.social_image_path }}">
  14. <meta property="og:image:secure_url" content="{{ site.url | append: site.social_image_path }}">
  15. <meta property="og:image:type" content="image/png">
  16. <meta property="og:image:width" content="1200">
  17. <meta property="og:image:height" content="630">