{% extends "parody_web/base.html" %} {% block body %}

{{ book.title }}

{% if book.authors %}

{{ book.authors|join:", " }}

{% endif %} {% if book.description %}

{{ book.description }}

{% endif %} {% if book.book_metadata.editions %}

{% with ed=book.book_metadata.editions.0 %} {% if ed.publisher %}{{ ed.publisher }}{% endif %} {% if ed.year %}({{ ed.year }}){% endif %} {% if ed.isbn %}· ISBN {{ ed.isbn }}{% endif %} {% endwith %} {% if book.book_metadata.companion_url %} · companion{% endif %}

{% endif %} {% for chapter, sections in chapters %}

{% if chapter.number %}{% if chapter.appendix %}Appendix {% endif %}{{ chapter.number }}. {% endif %}{{ chapter.title }}

{% endfor %}

A partial web edition. Published from a parody artifact {% if book.built_at %}({{ book.built_at }}){% endif %}.

{% endblock %}