diff options
Diffstat (limited to 'theme/templates/article.html')
-rw-r--r-- | theme/templates/article.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/theme/templates/article.html b/theme/templates/article.html new file mode 100644 index 0000000..dd17efd --- /dev/null +++ b/theme/templates/article.html @@ -0,0 +1,48 @@ +{% extends "base.html" %} +{% block head %} + {{ super() }} + {% for keyword in article.keywords %} + <meta name="keywords" content="{{keyword}}" /> + {% endfor %} + {% for description in article.description %} + <meta name="description" content="{{description}}" /> + {% endfor %} + {% for tag in article.tags %} + <meta name="tags" content="{{tag}}" /> + {% endfor %} +{% endblock %} + +{% block pagetitle %} +<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" + title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a> +{% endblock %} +{% block content %} +{# <section id="content" class="body"> + <header> #} + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} +{# </header> + <footer class="post-info"> #} + <div class="right_stuff"> + <abbr class="published" title="{{ article.date.isoformat() }}"> + {{ article.locale_date }} + </abbr> + {% if article.modified %} + <abbr class="modified" title="{{ article.modified.isoformat() }}"> + {{ article.locale_modified }} + </abbr> + {% endif %} + {% if article.authors %} + <address class="vcard author"> + {% for author in article.authors %} + <a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> + {% endfor %} + </address> + {% endif %} + </div> +{# </footer><!-- /.post-info --> #} + <div class="entry-content"> + {{ article.content }} + </div><!-- /.entry-content --> +{# </section> #} +{% endblock %} |