{% 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 %}
{{documents["meta"]["now"]}} {{page['title']}}

A field guide to

Salvaging Sound Devices

Version {{page['version']}}

{{documents["meta"]["now"]}}

{{page['body'] | shortcode}}
{% for chapter in documents['chapters'] %}
{% if chapter['front'] %} {{ showCoverPage(chapter, documents, loop.inex0) }} {% endif %}
{% if not chapter['front'] %}
{{chapter['title']}}
{% endif %}

{{chapter['title']}}

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