{% extends "news.html" %} {% load thumbnails %} {% load paniktags %} {% block title %}News - Archives{% endblock %} {% block nav %} {% news_nav with klass="archives" %} {% endblock %} {% block main %}
{% if search_query and not results %}
Sorry, no result with your query!
{% endif %} {% if search_query and results or results.count <= 24 %} {% else %}
{% if results %} {% regroup results by date|date:"F Y"|capfirst as month_list %}
{% for month in month_list %}
{{ month.grouper }}
    = 3 %}style="display:none;"{% endif %} > {% for result in month.list %}
  • {% with result.object as content %}{% news_inline %}{% endwith %}
  • {% endfor %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}