lowtechmag-solar/solar/templates/page.html

22 wiersze
418 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<section id="content" class="page">
<header>
<h1>{{ page.title }}</h1>
<p class="summary">
{{ page.summary }}
</p>
</header>
<div class="entry-content">
{{ page.content }}
</div>
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
{% endif %}
</section>
{% endblock %}