aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/article.html
blob: f156bfa14622d542c3b1fe8d28be81fb74ae1609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "normal.html" %}

{% block title %}{{ article.title }} {% endblock title %}

{% block metatags %}
{% autoescape true %}

<!-- Primary Meta Tags -->
<meta name="title" content="{{ article.title }}">
<meta name="description" content="{{ article.summary | striptags }}">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://spacekookie.de">
<meta property="og:title" content="{{ article.title }}">
<meta property="og:description" content="{{ article.summary | striptags }}">
<meta property="og:image" content="https://spacekookie.de/theme/img/card.png">

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:image" content="https://spacekookie.de/theme/img/card.png">
<meta property="twitter:url" content="https://spacekookie.de">
<meta property="twitter:title" content="{{ article.title }}">
<meta property="twitter:description" content="{{ article.summary | striptags }}">

{% endautoescape %}
{% endblock metatags %}

{% block content %}
    {% with type='single' %}
    {% include "components/card_content.html" %}
    {% endwith %}
{% endblock %}