about summary refs log tree commit diff
path: root/templates/note.html
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-09-23 08:19:51 -0700
committerFranck Cuny <franck@fcuny.net>2024-09-23 08:19:51 -0700
commit9ccb10bd55b084104a77b85f3e8e39b8b825b880 (patch)
tree8390b07d01768282a82e781f1e48627d111afa9f /templates/note.html
parentget rid of the TOC and simplify the CSS (diff)
downloadfcuny.net-9ccb10bd55b084104a77b85f3e8e39b8b825b880.tar.gz
no need to use a custom template for notes
Diffstat (limited to '')
-rw-r--r--templates/note.html12
1 files changed, 0 insertions, 12 deletions
diff --git a/templates/note.html b/templates/note.html
deleted file mode 100644
index 7eee854..0000000
--- a/templates/note.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
-
-{% block content -%}
-<h1>{{ page.title }}</h1>
-    
-{{ page.content | safe }}
-
-<p class="date">{{ page.date | date(format="%B %d, %Y") }}</p>
-
-{%- endblock content %}