You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
444 B

{% extends "base.html" %}
{% block menuheader %}
{% import "_macros/menu.html" as macros %}
{{ macros.render_menu(article.slug) }}
{% endblock menuheader %}
{% block title %}{{ SHORT_SITENAME }} - {{ article.title|striptags }}{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<h2 style="margin-bottom:4px;">{{ article.title }}</h2>
<b>2020-06-04</b>
<br>
{{ article.content }}
{% endblock %}