zine_library/code-for-pelican-deployment/themes/edtheme/templates/page.html

16 lines
337 B
HTML
Raw Normal View History

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