{% extends 'base.html' %} {% block title %} Ch.{{ num_major }}{% if num_minor %}.{{ num_minor }}{% endif %} {% if name %} - {{ name }}{% endif %} {% endblock %} {% block head %} {% if next_chapter %} {% endif %} {% endblock %} {% block content %}

{{ self.title() }}

{# Put buttons in block to reuse later in this same template #} {% block buttons %}
{% if prev_chapter %} {{ ibutton(href=url_for('chapter_view', site=site, chapter_id=prev_chapter['id']), left_icon='chevrons-left', text='Prev') }} {% else %} {{ ibutton(left_icon='chevrons-left', text='Prev', disabled=True) }} {% endif %} {{ ibutton(href=url_for('title_view', title_id=title_id, site=site), left_icon='list', text='Chapter list', color='blue') }} {% if next_chapter %} {{ ibutton(href=url_for('chapter_view', site=site, chapter_id=next_chapter['id']), right_icon='chevrons-right', text='Next') }} {% else %} {{ ibutton(right_icon='chevrons-right', text='Next', disabled=True) }} {% endif %}
{% endblock %}
{% for page in pages %} {% endfor %}
{{ self.buttons() }} {% endblock %}