summaryrefslogtreecommitdiffstats
path: root/theme/templates/page/page.html
blob: dbead6edcc8d3d00568cf9bd1398e6c8cb40102d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends "../layout.html" %}

{% block title %}{{ progress.current.title }} | {{ title }}{% endblock %}

{% block style %}
<link rel="stylesheet" href="{{ staticBase }}/print.css">
{% for resource in plugins.resources.css %}
    {% if resource.url %}
    <link rel="stylesheet" href="{{ resource.url }}">
    {% else %}
    <link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.path }}">
    {% endif %}
{% endfor %}
{% endblock %}

{% block content %}
<div class="page">
    <h1 class="book-chapter book-chapter-{{ progress.current.level|lvl }}">{{ progress.current.title }}</h1>
    {% for section in content %}
        <section class="{{ section.type }}" id="section-{{ section.id }}">
        {% if section.type == "normal" %}
            {% autoescape false %}{{ section.content }}{% endautoescape %}
        {% elif section.type == "exercise" %}
            {% include "./includes/page/exercise.html" with {section: section} %}
        {% elif section.type == "quiz" %}
            {% include "./includes/page/quiz.html" with {section: section} %}
        {% endif %}
        </section>
    {% endfor %}
</div>
{% endblock %}