aboutsummaryrefslogtreecommitdiffstats
path: root/nmnlist/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'nmnlist/templates/page.html')
-rw-r--r--nmnlist/templates/page.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/nmnlist/templates/page.html b/nmnlist/templates/page.html
new file mode 100644
index 0000000..4659e4c
--- /dev/null
+++ b/nmnlist/templates/page.html
@@ -0,0 +1,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 %}