aboutsummaryrefslogtreecommitdiffstats
path: root/monospace/templates/page.html
blob: b8c89f70b2ee96b80eee3143ed02fdde6ee9f02d (plain)
1
2
3
4
5
6
7
8
9
10
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 %}