{% extends "parody_web/base.html" %} {% load parody_web %} {% block title %}{% if q %}“{{ q }}” — {% endif %}Search — {{ book.title }}{% endblock %} {% block head_extra %} {% if q %}{% endif %} {% endblock %} {% block body %}

Search inside

{% if q %} {% if results %}

{{ results|length }} section{{ results|length|pluralize }} mentioning “{{ q }}”.

{% if public %}

These are snippets from the full book — get the complete text to read every match in context.

{% endif %}
    {% for r in results %}
  1. {% if r.number %}{{ r.number }} {% endif %}{{ r.title|code_spans }}{% if r.gated %} 🔒{% endif %} {% for sn in r.snippets %}

    {{ sn }}

    {% endfor %}
  2. {% endfor %}
{% else %}

No matches for “{{ q }}”. Try a different word or phrase.

{% endif %} {% endif %} {% endblock %}