diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-23 08:19:51 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-23 08:19:51 -0700 |
commit | 9ccb10bd55b084104a77b85f3e8e39b8b825b880 (patch) | |
tree | 8390b07d01768282a82e781f1e48627d111afa9f /templates/note.html | |
parent | get rid of the TOC and simplify the CSS (diff) | |
download | fcuny.net-9ccb10bd55b084104a77b85f3e8e39b8b825b880.tar.gz |
no need to use a custom template for notes
Diffstat (limited to '')
-rw-r--r-- | templates/note.html | 12 |
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 %} |