32 lines
733 B
HTML
32 lines
733 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page.title }} {%if page.subtitle %} - {{ page.subtitle }} {% endif %} · {{ super() }}
|
|
{% endblock title %}
|
|
|
|
{% block head_description %}
|
|
{% if page.summary %}
|
|
{{ article.summary|striptags }}
|
|
{% endif %}
|
|
{% endblock head_description %}
|
|
|
|
{% block meta_tags_in_head %}
|
|
{% if page.tags or page.category or page.keywords %}
|
|
<meta name="keywords" content="{{ [page.tags|join(', '), page.category, page.keywords]|join(', ') }}" />
|
|
{% endif %}
|
|
{% endblock meta_tags_in_head %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="post">
|
|
<header class="post-header">
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
|
|
<article class="post-content">
|
|
{{ page.content }}
|
|
</article>
|
|
|
|
</div>
|
|
{% endblock content %}
|