diff options
Diffstat (limited to 'monospace/templates/page.html')
-rw-r--r-- | monospace/templates/page.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/monospace/templates/page.html b/monospace/templates/page.html new file mode 100644 index 0000000..b8c89f7 --- /dev/null +++ b/monospace/templates/page.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{% endblock %} +{% block content %} +<header> +<h1><a href="{{ SITEURL }}" id="site-title">{# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#} + <a href="{{ SITEURL }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1> +</header> +<article> + {{ page.content }} +</article> +{% endblock %} |