summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlpage.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmlpage.tpl')
-rw-r--r--templates/html/htmlpage.tpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/html/htmlpage.tpl b/templates/html/htmlpage.tpl
new file mode 100644
index 0000000..1e6a5b1
--- /dev/null
+++ b/templates/html/htmlpage.tpl
@@ -0,0 +1,14 @@
+{% extend 'htmlbase.tpl' %}
+{% msg %}Generating HTML output for page {{ compound.name }}{% endmsg %}
+
+{% block navpath %}
+{% with navpath=compound.navigationPath %}
+ {% include 'htmlnavpath.tpl' %}
+{% endwith %}
+{% endblock %}
+
+{% block content %}
+<div class="contents">
+{{ compound.details }}
+</div>
+{% endblock %}