{% extends "parody_web/base.html" %} {% load parody_web %} {% block title %}{{ section.title|cut:"`" }} — {{ book.title }}{% endblock %} {% block head_extra %} {% include "parody_web/_section_head.html" %} {% endblock %} {% block side %}{% include "parody_web/_chapter_nav.html" %}{% endblock %} {% block rail %}{% include "parody_web/_rail.html" %}{% endblock %} {% block body %} {% comment %} A section whose markdown doesn't open with its own heading gets its title rendered here, outside the numbering pass — so carry the number across, or the page reads "Voltage dividers" while the contents beside it read "1.2 Voltage dividers" (#576). {% endcomment %} {% if not title_in_html %}

{% if section.number %}{{ section.number }} {% endif %}{{ section.title|code_spans }}

{% endif %} {% include "parody_web/_section_toolbar.html" %} {% include "parody_web/_section_rail.html" %} {% if preview %} {% if section.html %}
{{ section.html|render_book|truncatewords_html:150 }}
{% endif %}
{% with ed=book.book_metadata.editions.0 %}

This is a preview. Read the full book in print or ebook — {% if ed.url_publisher %}get it from {{ ed.publisher|default:"the publisher" }}{% else %}available from the publisher{% endif %}{% if ed.isbn %} (ISBN {{ ed.isbn }}){% endif %}.

{% endwith %}

Instructor with access? Instructor login.

{% else %} {% if section.html %} {{ section.html|render_book }} {% endif %} {% if section.online_resources %}

Online resources

{{ section.online_resources|render_book }}
{% endif %} {% endif %} {% include "parody_web/_section_foot.html" %} {% include "parody_web/_section_overlay.html" %} {% endblock %}