{% extends "base.html" %} {% set has_right = True %} {% block title %} {{ article.title|striptags }} {% endblock %} {% block top_center %}
{{ article.locale_date }}
{% if AUTHOR_SAVE_AS and article.authors %} By {% for author in article.authors %} {{ author.name }} {% endfor %} {% endif %}{% if article.category %} {% for category, articles in categories %} {% if category.url == article.category.url %} {% set article_counter = articles|length() %} {{ article.category }} {% endif %} {% endfor %} {% endif %} {% if article.tags %} {% set article_tags = [] %} {% for tag, articles in tags %} {% for t in article.tags %} {% if tag.url == t.url %} {% if article_tags.append({'name': tag.name, 'url': tag.url, 'articles': articles|length()}) %}{% endif %} {% endif %} {% endfor %} {% endfor %} {% for tag in article_tags|sort(reverse = True, attribute = 'articles') %} {{ m.render_tag(tag) }} {% endfor %} {% endif %}
Found a typo ? Want to fix it ?
Edit article on GitHub