Browse Source

Fixes #7, adds tags back to blog detail page

David Ray 8 years ago
parent
commit
a308f948af
1 changed files with 5 additions and 1 deletions
  1. 5 1
      bakerydemo/templates/blog/blog_page.html

+ 5 - 1
bakerydemo/templates/blog/blog_page.html

@@ -23,8 +23,12 @@
             {% if page.introduction %}
                 <p class="intro">{{ page.introduction }}</p>
             {% endif %}
-            
+
             {{ page.body }}
+
+            {% for tag in page.get_tags  %}
+                <a href="{{ tag.url }}">{{ tag }}</a>
+            {% endfor %}
         </div>
     </div>
 </div>