about summary refs log tree commit diff
path: root/templates/page.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-09-23 08:10:12 -0700
committerFranck Cuny <franck@fcuny.net>2024-09-23 08:10:12 -0700
commit1ad845315772be21782d0a1a5948e57ed88f791f (patch)
treebc11e212a0a5815529f9fcb0bca56089590fcfa7 /templates/page.html
parentignore the cache (diff)
downloadfcuny.net-1ad845315772be21782d0a1a5948e57ed88f791f.tar.gz
get rid of the TOC and simplify the CSS
Diffstat (limited to '')
-rw-r--r--templates/page.html13
1 files changed, 3 insertions, 10 deletions
diff --git a/templates/page.html b/templates/page.html
index 53a7be3..ab19904 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -3,17 +3,10 @@
 {% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
 
 {% block content -%}
-<main>
-  <h1>{{ page.title }}</h1>
+<h1>{{ page.title }}</h1>
 
-  {{ page.content | safe -}}
+{{ page.content | safe -}}
 
-  <p class="date">
-    <time datetime="{{ page.date | date(format="%+") }}">
-      {{- page.date | date(format="%B %m, %Y") -}}
-    </time>
-  </p>
-
-</main>
+<p class="date">{{ page.date | date(format="%B %d, %Y") }}</p>
 
 {%- endblock content %}