summaryrefslogtreecommitdiff
path: root/templates/blog.html
diff options
context:
space:
mode:
authorlsof <lsof@mailbox.org>2025-09-02 12:03:22 +0200
committerlsof <lsof@mailbox.org>2025-09-02 12:03:22 +0200
commitba7fd8ed5809bb73971a9caf6c382c17782e0f60 (patch)
tree2208034b63b8f23c3122ebcaf659f991e48b25b4 /templates/blog.html
parent04cdbbb8fd99fa3cb113106f6a83560cc0463a39 (diff)
makeover
Diffstat (limited to 'templates/blog.html')
-rw-r--r--templates/blog.html5
1 files changed, 1 insertions, 4 deletions
diff --git a/templates/blog.html b/templates/blog.html
index f8f422f..2c0b4cf 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -3,16 +3,13 @@
{% block title %}lemon's site{% endblock title %}
{% block content %}
-<nav class="navbar">
- <a href="/">Home</a>
-</nav>
<h1 class="title">
{{ section.title }}
</h1>
Browse by <a href="/tags">tags</a>
<ul>
{% for page in section.pages %}
- <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a> ({{ page.date }})</li>
+ <li><span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span> <a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}