[NOTMYIDEA-CMS] Add authors files and update article_infos template with official theme one

This commit is contained in:
FELD Boris
2011-07-27 16:52:32 +02:00
parent a4ea2832a8
commit fe7b6edc8e
3 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
{% if article.author %}
<address class="vcard author">
By <a class="url fn" href="#">{{ article.author }}</a>
By <a class="url fn" href="{{ SITEURL }}/author/{{ article.author }}.html">{{ article.author }}</a>
</address>
{% endif %}
<p>In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ article.slug }}.pdf">get the pdf</a>{% endif %}</p>

View File

@@ -0,0 +1,2 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}

View File