wowlet-website/themes/wowlet/templates/article.html

19 lines
444 B
HTML
Executable File

{% 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 %}