diff options
| author | 2024-09-15 12:30:02 +0200 | |
|---|---|---|
| committer | 2024-09-15 12:30:02 +0200 | |
| commit | dd4efd4f8e41dafcc522fd09a78e27baeb9bd2ab (patch) | |
| tree | a054c4e588cc705a9fce55eff7173398eeb67fb4 /templates/blog.html | |
| parent | be3c967c2dac40a0ea573a443ef858d8cd4aa8ba (diff) | |
blog: add taxonomies (tags)
Diffstat (limited to 'templates/blog.html')
| -rw-r--r-- | templates/blog.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/blog.html b/templates/blog.html index fb7ea21..f8f422f 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -4,11 +4,12 @@ {% block content %} <nav class="navbar"> - <a href="/">Home</a> <!--a href="../">Go Back</a--!> + <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> |