Visual improvements

This commit is contained in:
Raymond Wanyoike 2016-11-29 14:54:27 +03:00
commit 118bfc6346
4 changed files with 58 additions and 45 deletions

View file

@ -18,16 +18,16 @@
<header>
<ul class="list-inline">
<li class="text-muted" title="{{ article.date.isoformat() }}">
<i class="fa fa-fw fa-clock-o"></i>
<i class="fa fa-clock-o"></i>
{{ article.locale_date }}
</li>
<li>
<i class="fa fa-fw fa-folder-open"></i>
<i class="fa fa-folder-open-o"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if article.tags %}
<li>
<i class="fa fa-fw fa-tags"></i>
<i class="fa fa-files-o"></i>
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
@ -35,7 +35,7 @@
{% endif %}
{% if not HIDE_AUTHORS and article.authors %}
<li>
<i class="fa fa-fw fa-users"></i>
<i class="fa fa-user-o"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}