Display post tags

This commit is contained in:
Correl Roush 2016-02-23 16:24:13 -05:00
parent 48b4f74524
commit 6d98de5ab5
3 changed files with 20 additions and 0 deletions

View file

@ -5,6 +5,12 @@
<h1>{{ page.title }}</h1>
<hr />
<span class="date">{{ page.date | date_to_long_string }}</span>
<span class="tags">
{% for tag in page.tags %}
{% unless forloop.first %} &middot; {% endunless %}
{{ tag }}
{% endfor %}
</span>
</header>
<div style="clear: both;"></div>

View file

@ -9,6 +9,12 @@ title: correl.phoenixinquis.net
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<hr />
<span class="date">{{ post.date | date_to_long_string }}</span>
<span class="tags">
{% for tag in post.tags %}
{% unless forloop.first %} &middot; {% endunless %}
{{ tag }}
{% endfor %}
</span>
</header>
<div style="clear: both;"></div>
<div class="excerpt">

View file

@ -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;