diff options
| author | 2025-09-02 12:03:22 +0200 | |
|---|---|---|
| committer | 2025-09-02 12:03:22 +0200 | |
| commit | ba7fd8ed5809bb73971a9caf6c382c17782e0f60 (patch) | |
| tree | 2208034b63b8f23c3122ebcaf659f991e48b25b4 /templates/blog-page.html | |
| parent | 04cdbbb8fd99fa3cb113106f6a83560cc0463a39 (diff) | |
makeover
Diffstat (limited to 'templates/blog-page.html')
| -rw-r--r-- | templates/blog-page.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html index 51f8aba..8ca5835 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -4,19 +4,15 @@ {% block content %} -<nav class="navbar"> - <a href="/">Home</a> -</nav> <h1 class="title"> {{ page.title }} </h1> -<p class="subtitle">{{ page.date | date(format="%-d %b %Y") }}</p> <p class="subtitle"> + {{ page.date | date(format="%-d %b %Y") }} + — {% for tag in page.taxonomies.tags %} <a href="/tags/{{ tag | safe}}">#{{ tag }}</a> {% endfor %} </p> - -<hr> {{ page.content | safe }} {% endblock content %} |