Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@davidensinger
Last active June 13, 2016 12:03
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save davidensinger/5415639 to your computer and use it in GitHub Desktop.
Save davidensinger/5415639 to your computer and use it in GitHub Desktop.
Support for the Summary Twitter Card in Jekyll
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@site_username">
<meta name="twitter:creator" content="@creator_username">
{% if page.title %}
<meta name="twitter:title" content="{{ page.title }}">
{% else %}
<meta name="twitter:title" content="{{ site.title }}">
{% endif %}
{% if page.url %}
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
{% endif %}
{% if page.description %}
<meta name="twitter:description" content="{{ page.description }}">
{% else %}
<meta name="twitter:description" content="{{ site.description }}">
{% endif %}
{% if page.image %}
<meta name="twitter:image:src" content="{{ site.url }}/path/to/image/{{ page.image }}">
{% else %}
<meta name="twitter:image:src" content="{{ site.url }}/path/to/image/logo.png">
{% endif %}
@davidensinger
Copy link
Author

For more information, please see my post on Supporting Twitter Cards with Jekyll.

@i3arnon
Copy link

i3arnon commented May 8, 2016

Are you sure twitter:url is picked up by the summary card?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment