{% extends "base.html" %} {% load core_tags %} {% load static from staticfiles %} {% block title %}All snippets{% if months %} last {{ months }} months{% endif %}{% endblock %} {% block content_header %}All snippets{% if months %} last {{ months }} months{% endif %}{% endblock %} {% block content %}
{% if object_list %}{{ snippet.pub_date|timesince }} ago,
{% if has_previous %} < Previous {{ results_per_page }} {% endif %} {% if has_next %} Next {{ results_per_page }} > {% endif %}
{% else %}No snippets posted yet.
{% endif %} {% endblock %} {% block sidebar %}{{ hits }} snippet{{ hits|pluralize }} posted so far.
{% endblock %}