aboutsummaryrefslogtreecommitdiffstats
path: root/nmnlist/templates/page.html
blob: 4659e4c7e8e1ab7739fd0d4da50f886f8cfe7c6a (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 }}/{{ page.slug }}" id="page-title">{{ page.title }}</a></h1>
    <span id="sitename"><a href="{{ SITEURL }}" id="site-title">{{ SITENAME }} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a></span>
</header>
<article>    
    {{ page.content }}
</article>
{% endblock %}