{% extends "layout.html" %} {% block title %}{{ title }}{% endblock %} {% block style %} {% parent %} {% endblock %} {% set exercise = 0 %} {% block content %} {# Cover #}

{{ title }}

By @{{ githubAuthor }}

{# Summary #}

Summary

{# Pages content #} {% for item in summary.chapters %} {% if item.articles.length > 0 %}

{{ item.title }}

{% for article in item.articles %}
{% for section in pages[article.path].content %} {% if section.type == "normal" %} {% autoescape false %}{{ section.content }}{% endautoescape %} {% elif section.type == "exercise" %}
Exercise #{{ exercise }}
{% autoescape false %}{{ section.content }}{% endautoescape %}
                                    
                                    {% autoescape false %}{{ section.code.base|code }}{% endautoescape %}
                                    
                                
{% set exercise = exercise + 1 %}
{% endif %} {% endfor %}
{% endfor %}
{% endif %} {% endfor %} {% endblock %} {% block javascript %}{% endblock %}