{% extends "layout.html" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{% for page in pages %}
{% for section in page.content %}
{% if section.type == "normal" %}
{% autoescape false %}{{ section.content }}{% endautoescape %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}
{% block javascript %}{% endblock %}