{% extends "base.html" %} {% load i18n %} {% load blogtags %} {% block main_content %}

Blog

{% if tag %}

There are {% if articles %}{{ articles|length }} {% else %}no {% endif %}Articles published under the Tag '{{ tag }}'

{% endif %} {% if user.is_authenticated %} Author Options {% endif %} Archive All Tags {% if articles %} {% for article in articles %}

{{ article.title }}

{% if article.title_image %} {% endif %}

{{ article.pubDate|date:"d.n.Y" }} {% for tag in article.tags.all %} {% if forloop.first %} | {% else %}, {% endif %} {{ tag }} {% endfor %}

{{ article.desc }}

{% endfor %} {% else %}

No Articles found

{% endif %} {% endblock %}