Files
blog_os/blog/templates/edition-2/extra.html
2020-12-16 14:56:36 +01:00

23 lines
512 B
HTML

{% extends "edition-2/base.html" %}
{% import "macros.html" as macros %}
{% block title %}{{ page.title }} | {{ config.title }}{% endblock title %}
{% block description -%}
{{ page.summary | safe | striptags | truncate(length=150) }}
{%- endblock description %}
{% block main %}
<h1>{{ page.title }}</h1>
{{ page.content | safe }}
{% endblock main %}
{% block after_main %}
<hr>
<section>
<h2>Comments</h2>
{{ macros::utterances() }}
</section>
{% endblock after_main %}