[add] tags displaying

This commit is contained in:
Nicolas Lœuillet 2013-12-06 13:02:58 +01:00
parent 7b171c7340
commit 68e2061666
2 changed files with 9 additions and 0 deletions

View File

@ -176,6 +176,12 @@ a:visited {
text-decoration: none;
}
#article .tags {
font-size: 0.8em;
color: #888;
padding-bottom: 5px;
}
.backhome {
display: inline;
}

View File

@ -20,6 +20,9 @@
<header class="mbm">
<h1>{{ entry.title|raw }}</h1>
</header>
<aside class="tags">
tags: {% for tag in tags %}<a href="#">{{ tag.value }}</a> {% endfor %}<a href="#" title="{% trans "edit tags" %}">✎</a>
</aside>
<article>
{{ content | raw }}
</article>