about summary refs log tree commit diff
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html27
1 files changed, 9 insertions, 18 deletions
diff --git a/templates/page.html b/templates/page.html
index 1026cd0..53a7be3 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -4,25 +4,16 @@
 
 {% block content -%}
 <main>
-<h1>{{ page.title }}</h1>
-<p class="date">
-	<time datetime="{{ page.date | date(format="%+") }}">
-		{{- page.date | date(format="%B %m, %Y") -}}
-	</time>
-	{%- if page.updated %}
-	•
-	updated <time datetime="{{ page.updated | date(format="%+") }}">
-		{{- page.updated | date(format="%B %m, %Y") -}}
-	</time>
-	{%- endif %}
-</p>
+  <h1>{{ page.title }}</h1>
 
-{{ page.content | safe -}}
-</main>
+  {{ page.content | safe -}}
+
+  <p class="date">
+    <time datetime="{{ page.date | date(format="%+") }}">
+      {{- page.date | date(format="%B %m, %Y") -}}
+    </time>
+  </p>
 
-<hr>
-<p>
-<b><a href="/">↑ back home</a></b>
-</p>
+</main>
 
 {%- endblock content %}