Files
blog_os/blog/templates/edition-2/extra.html
2022-01-23 18:02:34 +01:00

23 lines
574 B
HTML

{% extends "edition-2/base.html" %}
{% import "edition-2/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 id="comments">Comments</h2>
{{ snippets::giscus(search_term=page.title ~ " (Extra Post)") }}
</section>
{% endblock after_main %}