{% from 'snippets/page-detail.jinja' import showDetail with context %} {% from 'snippets/page-front.jinja' import pageFront with context %} {% from 'snippets/page-circuit.jinja' import showCircuit with context %} {% from 'snippets/pages-nest.jinja' import showNestedPages with context %} {% from 'snippets/page-cover.jinja' import showCoverPage with context %} {% extends "base.jinja" %} {% block content %}
{% if documents["meta"] %} {{documents["meta"]["now"]}} {% endif %} {{page['title']}}

A field guide to

Salvaging Sound Devices

Version {{documents['meta']['version']}} | generated on {{documents["meta"]["now"]}}

Rosa Schuurmans
{% if page["body"] | length > 10 %}
{{page['body'] | shortcode}}
{% endif %} {% for chapter in documents['chapters'] %} {% if chapter["type"] == "toc" %}
{{chapter['body'] | shortcode}}
{% elif chapter['title']|lower != 'index' %}
{% if chapter['front'] %} {{ showCoverPage(chapter, documents, loop.inex0) }} {% endif %}
{% if not chapter['front'] %}
{{chapter['title']}}
{% endif %}

{{chapter['title']}}

{{chapter['body'] | shortcode}}
{{ showNestedPages(chapter, documents) }} {% endif %} {% endfor %} {% endblock %} {% block aside %} {% endblock %}