diff options
author | Kura <kura@kura.io> | 2014-06-09 14:09:32 +0100 |
---|---|---|
committer | Kura <kura@kura.io> | 2014-06-09 14:09:32 +0100 |
commit | 93944ff65e49df141c2908d7c335a4d0fc3da106 (patch) | |
tree | 315cd596848ab6c305362e2b3c085137acaa03df /SoMA2/templates/article_infos.html | |
parent | 001ed18d5ceb6b656602c9617df034e37ca7d271 (diff) | |
parent | 80208cadc06f72456e9bd0f9c91110dcb8513be3 (diff) | |
download | pelican-themes-93944ff65e49df141c2908d7c335a4d0fc3da106.tar.gz |
Merge pull request #223 from skensell/SoMA2
SoMA2 - new theme
Diffstat (limited to 'SoMA2/templates/article_infos.html')
-rw-r--r-- | SoMA2/templates/article_infos.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/SoMA2/templates/article_infos.html b/SoMA2/templates/article_infos.html new file mode 100644 index 0000000..d5c28c6 --- /dev/null +++ b/SoMA2/templates/article_infos.html @@ -0,0 +1,16 @@ +<div class="post-info"> + <ul> + {% if article.author %} + <li class="vcard author"> + by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a> + </li> + {% endif %} + <li class="published" title="{{ article.date.isoformat() }}"> + on {{ article.locale_date }} + </li> + + </ul> +{% include 'taglist.html' %} +{% import 'translations.html' as translations with context %} +{{ translations.translations_for(article) }} +</div><!-- /.post-info --> |