a-nourishing-network/themes/basic/templates/page.html

12 lines
264 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ page.title|striptags }}{%endblock%}
{% block content %}
<article class="post page">
<h1>{{ page.title }}</h1>
<div class="post-content">
{{ page.content }}
</div>
</article>
{% endblock %}