monospace/templates/page.html

18 lines
489 B
HTML
Raw Normal View History

2019-03-06 17:01:54 -05:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
2022-08-04 09:41:15 -04:00
<div id="wrap">
<div id="container">
2021-07-27 20:49:53 -04:00
<div class="entry">
2019-03-06 17:01:54 -05:00
<header>
<h1><a href="{{ SITEURL }}" id="site-title">{# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}
<a href="{{ SITEURL }}/{{ page.url }}" id="page-title">{{ page.title }}</a></h1>
</header>
<article>
{{ page.content }}
</article>
2021-07-27 20:49:53 -04:00
</div>
</div>
2019-03-06 17:01:54 -05:00
{% endblock %}