zine_library/code-for-pelican-deployment/themes/edtheme/templates/page.html
2026-02-05 17:54:04 -08:00

15 lines
337 B
HTML
Executable file

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