about summary refs log tree commit diff stats
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html
new file mode 100644
index 0000000..f32a6fc
--- /dev/null
+++ b/templates/page.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block title %}
+{{- page.title -}}
+{% endblock %}
+
+{% block main %}
+<article class="h-entry">
+  <header>
+    <h1><span class="title p-name">{{ page.title }}</span></h1>
+    <time class="dt-published" datetime="{{ page.date | date(format='%+') }}">{{ page.date | date(format="%F") }}</time>
+    <p class="terms">
+      {%- if page.taxonomies %}
+      {%- for name, taxon in page.taxonomies %}
+      {{ name | capitalize }}:
+      {%- for item in taxon %}
+      <a class="p-category" href="{{ get_taxonomy_url(kind=name, name=item) }}">{{ item }}</a>
+      {%- endfor %}
+      {%- endfor %}
+      {%- endif %}
+    </p>
+  </header>
+
+  <main class="e-content">
+    {{ page.content | safe }}
+  </main>
+</article>
+{% endblock %}