Stripped tags from descriptions in meta tags, OG_IMAGE now refers to absolute URL

This commit is contained in:
Luca Chiricozzi 2015-01-01 21:24:40 +01:00
parent 37f9811fa3
commit 08473d33a5
3 changed files with 16 additions and 16 deletions

View File

@ -9,8 +9,8 @@
<meta name="twitter:title" content="{{ article.title|capitalize }}" />
<meta name="twitter:url" content="{{ SITEURL }}/{{ article.url }}" />
{% if article.summary %}
<meta property="og:description" content="{{ article.summary }}" />
<meta name="twitter:description" content="{{ article.summary }}" />
<meta property="og:description" content="{{ article.summary|striptags }}" />
<meta name="twitter:description" content="{{ article.summary|striptags }}" />
{% endif %}
{% if article.date %}
<meta property="og:article:published_time" content="{{ article.date }}">
@ -25,12 +25,12 @@
<meta property="og:article:tag" content="{{ tag }}">
{% endfor %}
{% if article.image %}
<meta property="og:image" content="{{ SITEURL }}/static/{{ article.image }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ article.image }}" />
{% elif OG_IMAGE%}
<meta property="og:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta property="og:image" content="{{ article.image }}" />
<meta name="twitter:image" content="{{ article.image }}" />
{% elif OG_IMAGE %}
<meta property="og:image" content="{{ OG_IMAGE }}" />
<meta property="og:image:type" content="{{ OG_IMAGE_TYPE }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta name="twitter:image" content="{{ OG_IMAGE }}" />
{% endif %}
{% endblock %}

View File

@ -13,7 +13,7 @@
<meta name="author" content="{{ AUTHOR }}">
<meta name="copyright" content="{{ AUTHOR }}">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="{{ TWITTER_USERNAME }}" />
<meta name="twitter:site" content="@{{ TWITTER_USERNAME }}" />
<meta property="og:site_name" content="{{ SITENAME }}" />
{% block seo %}
<meta property="og:title" content="{{ SITENAME }}" />
@ -25,9 +25,9 @@
<meta name="twitter:description" content="{{ DESCRIPTION }}" />
{% endif %}
{% if OG_IMAGE %}
<meta property="og:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta property="og:image" content="{{ OG_IMAGE }}" />
<meta property="og:image:type" content="{{ OG_IMAGE_TYPE }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta name="twitter:image" content="{{ OG_IMAGE }}" />
{% endif %}
{% endblock %}
<link href="{{ SITEURL }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} ATOM Feed"/>

View File

@ -8,16 +8,16 @@
<meta property="og:url" content="{{ SITEURL }}/{{ page.url }}" />
<meta name="twitter:url" content="{{ SITEURL }}/{{ page.url }}" />
{% if page.image %}
<meta property="og:image" content="{{ SITEURL }}/static/{{ page.image }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ page.image }}" />
<meta property="og:image" content="{{ page.image }}" />
<meta name="twitter:image" content="{{ page.image }}" />
{% elif OG_IMAGE %}
<meta property="og:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta property="og:image" content="{{ OG_IMAGE }}" />
<meta property="og:image:type" content="{{ OG_IMAGE_TYPE }}" />
<meta name="twitter:image" content="{{ SITEURL }}/static/{{ OG_IMAGE }}" />
<meta name="twitter:image" content="{{ OG_IMAGE }}" />
{% endif %}
{% if page.summary %}
<meta property="og:description" content="{{ page.summary }}" />
<meta name="twitter:description" content="{{ page.summary }}" />
<meta property="og:description" content="{{ page.summary|striptags }}" />
<meta name="twitter:description" content="{{ page.summary|striptags }}" />
{% endif %}
{% endblock %}