From 22f1e66710c0c56b81fd3e8defe75c6d42136951 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 18 Apr 2015 00:57:24 +0100 Subject: [PATCH] Include tags, and next and previous links --- .../opdavies/opdavies/_layouts/post.html.twig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/themes/opdavies/opdavies/_layouts/post.html.twig b/source/themes/opdavies/opdavies/_layouts/post.html.twig index 143331631..f9d376c27 100644 --- a/source/themes/opdavies/opdavies/_layouts/post.html.twig +++ b/source/themes/opdavies/opdavies/_layouts/post.html.twig @@ -4,5 +4,21 @@
{% include 'post-header' %} {% block content %}{% endblock %} + + {% if page.tags %} +

+ Tags: + {% for tag in page.tags %} + {{ tag }}{% if not loop.last %}, {% endif %} + {% endfor %} +

+ {% endif %} + + {% if page.next_post or page.previous_post %} + + {% endif %}
{# .col-md-9 #} {% endblock %} \ No newline at end of file