|
|
|
@@ -31,7 +31,7 @@
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
<!-- Meta Article -->
|
|
|
|
<!-- Meta Article -->
|
|
|
|
<meta name="author" content="{{ article.author }}"/>
|
|
|
|
<meta name="author" content="{{ article.author }}"/>
|
|
|
|
<meta name="description" content="{{ seo_description }}"/>
|
|
|
|
<meta name="description" content="{{ seo_description|striptags }}"/>
|
|
|
|
<meta name="keywords" content="{{ article.tags|join(',')|escape }}"/>
|
|
|
|
<meta name="keywords" content="{{ article.tags|join(',')|escape }}"/>
|
|
|
|
<meta property="article:section" content="{{ article.category }}"/>
|
|
|
|
<meta property="article:section" content="{{ article.category }}"/>
|
|
|
|
<meta property="video:release_date" content="{{ article.date.isoformat() }}"/>
|
|
|
|
<meta property="video:release_date" content="{{ article.date.isoformat() }}"/>
|
|
|
|
@@ -40,14 +40,14 @@
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
<!-- Schema -->
|
|
|
|
<!-- Schema -->
|
|
|
|
<meta itemprop="name" content="{{ article.title }}"/>
|
|
|
|
<meta itemprop="name" content="{{ article.title }}"/>
|
|
|
|
<meta itemprop="description" content="{{ seo_description }}"/>
|
|
|
|
<meta itemprop="description" content="{{ seo_description|striptags }}"/>
|
|
|
|
<meta itemprop="uploadDate" content="{{ article.date.isoformat() }}"/>
|
|
|
|
<meta itemprop="uploadDate" content="{{ article.date.isoformat() }}"/>
|
|
|
|
<meta itemprop="thumbnailURL" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
<meta itemprop="thumbnailURL" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
<!-- OpenGraph -->
|
|
|
|
<!-- OpenGraph -->
|
|
|
|
<meta property="og:title" content="{{ article.title }}"/>
|
|
|
|
<meta property="og:title" content="{{ article.title }}"/>
|
|
|
|
<meta property="og:type" content="video.movie"/>
|
|
|
|
<meta property="og:type" content="video.movie"/>
|
|
|
|
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
|
|
|
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
|
|
|
<meta property="og:description" content="{{ seo_description }}"/>
|
|
|
|
<meta property="og:description" content="{{ seo_description|striptags }}"/>
|
|
|
|
<meta property="og:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
<meta property="og:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
{% for tag in article.tags %}
|
|
|
|
{% for tag in article.tags %}
|
|
|
|
<meta property="og:video:tag" content="{{ tag | escape }}"/>
|
|
|
|
<meta property="og:video:tag" content="{{ tag | escape }}"/>
|
|
|
|
@@ -64,7 +64,7 @@
|
|
|
|
<!-- Twitter -->
|
|
|
|
<!-- Twitter -->
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
<meta name="twitter:title" content="{{ article.title }} - {{ SITENAME }}"/>
|
|
|
|
<meta name="twitter:title" content="{{ article.title }} - {{ SITENAME }}"/>
|
|
|
|
<meta name="twitter:description" content="{{ seo_description }}"/>
|
|
|
|
<meta name="twitter:description" content="{{ seo_description|striptags }}"/>
|
|
|
|
<meta name="twitter:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
|
|
|
<meta name="twitter:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
|
|
|
<meta name="twitter:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
<meta name="twitter:image" content="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/../wp-content/uploads/article/poster/{{ article.image }}"/>
|
|
|
|
{% endblock %}
|
|
|
|
{% endblock %}
|
|
|
|
|