diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-05-14 20:31:55 +0200 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-05-14 20:31:55 +0200 |
commit | cfbc02fc1e56cc33c46c872d7240739da6d1d69d (patch) | |
tree | 77de8d321672091720c5f44684398d11f35fc60a /bootstrap2/templates/article_infos.html | |
parent | 62ed413cf87127449d420930b94873ef8536dca9 (diff) | |
parent | be14c8700ee575d94b0d8e606d18357e0436baa7 (diff) | |
download | pelican-themes-cfbc02fc1e56cc33c46c872d7240739da6d1d69d.tar.gz |
merge steph changes on bootstrap2
Diffstat (limited to 'bootstrap2/templates/article_infos.html')
-rw-r--r-- | bootstrap2/templates/article_infos.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap2/templates/article_infos.html b/bootstrap2/templates/article_infos.html index 0a6ce7a..a720b96 100644 --- a/bootstrap2/templates/article_infos.html +++ b/bootstrap2/templates/article_infos.html @@ -1,21 +1,21 @@ <footer class="post-info"> <span class="label">Date</span> <abbr class="published" title="{{ article.date.isoformat() }}"> - <i class="icon-calendar"></i>{{ article.locale_date }} + <i class="icon-calendar"></i>{{ article.locale_date }} </abbr> {% if article.author %} <span class="label">By</span> <a href="{{ SITEURL }}/{{ article.author.url }}"><i class="icon-user"></i>{{ article.author }}</a> {% endif %} <span class="label">Category</span> -<a href="{{ SITEURL }}/{{ article.category.url }}"><i class="icon-folder-open"></i>{{ article.category }}</a>. +<a href="{{ SITEURL }}/{{ article.category.url }}"><i class="icon-folder-open"></i>{{ article.category }}</a>. {% if PDF_PROCESSOR %} <span class="label"> <a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">PDF</a> </span> {% endif %} - + {% include 'taglist.html' %} {% include 'translations.html' %} </footer><!-- /.post-info --> |