summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Mota <josemota.net@gmail.com>2012-04-07 14:57:47 +0100
committerJosé Mota <josemota.net@gmail.com>2012-04-07 14:57:47 +0100
commit4a0c7db3c7f4d403ac5fed0f3d68c382e8200241 (patch)
tree26d1161f4cb5fba386dd5a3a80605b8afc5da6c5
parentf19acf7cb354ca8a7e3d8095cae26914f12e5f58 (diff)
Add tags list.
-rw-r--r--_layouts/post.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index 78a0eb1..fbaae44 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -12,6 +12,13 @@
<h1 id="logo">{{site.title}}</h1>
<h1>{{page.title}}</h1>
+ <aside>
+ <h3>Tags</h3>
+ {% for tag in page.tags %}
+ <li>{{tag}}</li>
+ {% endfor %}
+ </aside>
+
{{content}}
</div>
</body>