Last active
October 18, 2024 08:13
-
-
Save davidensinger/5415639 to your computer and use it in GitHub Desktop.
Support for the Summary Twitter Card in Jekyll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 %} |
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
For more information, please see my post on Supporting Twitter Cards with Jekyll.