mirror of
https://github.com/correl/correl.github.io.git
synced 2024-12-29 11:09:24 +00:00
Display post tags
This commit is contained in:
parent
48b4f74524
commit
6d98de5ab5
3 changed files with 20 additions and 0 deletions
|
@ -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 %} · {% endunless %}
|
||||
{{ tag }}
|
||||
{% endfor %}
|
||||
</span>
|
||||
</header>
|
||||
<div style="clear: both;"></div>
|
||||
|
||||
|
|
|
@ -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 %} · {% endunless %}
|
||||
{{ tag }}
|
||||
{% endfor %}
|
||||
</span>
|
||||
</header>
|
||||
<div style="clear: both;"></div>
|
||||
<div class="excerpt">
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue