From 6d98de5ab506877d4578c3870cf8285202625d92 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 23 Feb 2016 16:24:13 -0500 Subject: [PATCH] Display post tags --- _layouts/post.html | 6 ++++++ index.html | 6 ++++++ stylesheets/blog.css | 8 ++++++++ 3 files changed, 20 insertions(+) diff --git a/_layouts/post.html b/_layouts/post.html index d2f3e44..de5b2c5 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -5,6 +5,12 @@

{{ page.title }}


{{ page.date | date_to_long_string }} + + {% for tag in page.tags %} + {% unless forloop.first %} · {% endunless %} + {{ tag }} + {% endfor %} +
diff --git a/index.html b/index.html index 07879f1..15ff7d1 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,12 @@ title: correl.phoenixinquis.net

{{ post.title }}


{{ post.date | date_to_long_string }} + + {% for tag in post.tags %} + {% unless forloop.first %} · {% endunless %} + {{ tag }} + {% endfor %} +
diff --git a/stylesheets/blog.css b/stylesheets/blog.css index ed00566..718eebf 100644 --- a/stylesheets/blog.css +++ b/stylesheets/blog.css @@ -24,6 +24,14 @@ article .date { color: #696969; margin-top: -10px; } +article .tags { + float: right; + font-size: 11px; + font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: normal; + color: #696969; + margin-top: -10px; +} div.twitter-container { position: absolute;