{% 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 %} {% block analytics %} {% if not debug %} window.ll('tagScreen', 'Search view'); {% if query %} window.ll('tagEvent', 'Searched', { query: "{{ query }}" }); {% else %} window.ll('tagEvent', 'Visited search page'); {% endif %} {% endif %} {% endblock %}