diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 15:13:28 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-15 15:13:28 +0100 |
commit | b7f06dc45b17f2d71ef61dbd2a37c0b4eb64c0a3 (patch) | |
tree | 4db3db7002b4f1c6d20160c151a537f576ca6622 /templates/entry.html | |
parent | a12496341b9854669e47f9df3cd0d7886faab8b0 (diff) | |
download | kyblo-b7f06dc45b17f2d71ef61dbd2a37c0b4eb64c0a3.tar.xz |
entry: Wrap navigation in naw tags
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'templates/entry.html')
-rw-r--r-- | templates/entry.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/entry.html b/templates/entry.html index 730e48d..f44567a 100644 --- a/templates/entry.html +++ b/templates/entry.html @@ -10,6 +10,7 @@ {{ content }} </div> </article> +<nav> <div id="post-nav"> {% if older and newer%} <a href="{{ older[0]['file'] }}.html">Older ({{ older[0]['title'] }})</a> — <a href="{{ newer[0]['file'] }}.html">Newer ({{ newer[0]['title'] }})</a> @@ -18,5 +19,6 @@ {% elif newer %} <a href="{{ newer[0]['file'] }}.html">Newer ({{ newer[0]['title'] }})</a> {% endif %} +</nav> </div> {% endblock %} |