{% extends "base.html" %} {% block page-title %}/ search {% if query %}/ “{{ query }}”{% endif %}{% endblock %} {% block html-class %}search{% endblock %} {% block body-class %}search static{% endblock %} {% block js %} {{ block.super }} window.detail = false; {% endblock %} {% block breadcrumb %}
  • search
  • {% if query %}
  • / “{{ query }}”
  • {% endif %} {% endblock %} {% block extra-scripts %} {% endblock %} {% block content %}
    {% if query %} {% if page.object_list|length > 0 %}
    {% endif %} {% for result in page.object_list %} {% with result.object as snipt %} {% include "snipts/snipt-list.html" %} {% endwith %} {% empty %}
    No snipts found for “{{ query }}”.
    {% endfor %} {% if page.object_list|length > 0 %}
    {% endif %} {% if page.has_previous or page.has_next %} {% endif %} {% endif %} {% endblock %}