Website/theme/templates/page.html

17 lines
389 B
HTML
Raw Normal View History

2020-09-07 23:32:20 +02:00
{% extends "base.html" %}
{% block head -%}
{{ super() -}}
{% if page.summary %}
<meta name="description" content="{{ page.summary | striptags | safe | truncate(150) }}" />
{% endif %}
{% endblock %}
{% block title %}{{ page.title|striptags }}{% endblock %}
{% block content %}
<article>
<h1>{{ page.title }}</h1>
{{ page.content }}
</article>
{% endblock %}