{% extends 'base.html' %} {% block twittercard %}summary{% endblock %} {% block title %}Archives{% endblock %} {% block description %}All {{ articles.count }} articles published on Notes From Below{% endblock %} {% block longdescription %}All {{ articles.count }} articles published on Notes From Below{% endblock %} {% block content %}


Arhiv

{% if total_articles %} {% include "pagination.html" with items=articles category=category only %} {% endif %}
{% include "search.html" %}
{% if query %}
Našel {{ total_articles }} članek/i {{ total_articles }} za '{{ query }}'
{% if not total_articles %} You can currently only find articles based on title and subtitle. If you want to search based on a phrase in the body of the article, try Google. {% endif %} {% if tags or authors %}
    {% if tags %}
  • Found tag{{ tags.count|pluralize }}: {% for tag in tags %}{{ tag }} {% with count=tag.articles.count %} ({{ count }} article{{ count|pluralize }}) {% if not forloop.last %}/{% endif %} {% endwith %} {% endfor %}
  • {% endif %} {% if authors %}
  • Found author{{ authors.count|pluralize }}: {% for author in authors %}{{ author }} {% with count=author.get_articles.count %} ({{ count }} article{{ count|pluralize }}) {% if not forloop.last %}/{% endif %} {% endwith %} {% endfor %}
  • {% endif %}
{% endif %}
{% endif %}
{% for article in articles %}
{% include 'article_thumb.html' with article=article only %}
{% endfor %}
{% if total_articles %}
{% include "pagination.html" with items=articles category=category only %}
{% endif %}
{% endblock %}