{% extends "parody_web/base.html" %} {% block head_extra %} {% endblock %} {% 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 %}

{% if ed.url_publisher %}

Get the book โ€” {{ ed.publisher|default:"publisher" }}

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

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

{% endfor %}

A partial web edition โ€” selected sections are free to read; the rest are previews. Get the full book from the publisher (above).

{% endblock %}