{% extends "base.twig" %}
{% block title %}
{{ page.meta_title }}
{{ page.meta_description }}
{% endblock %}
{% block content %}
{% for row in page.contents %}
<div class="page-section {{row.classname}}" id="{{ row.id }}">
{{ row.html|raw }}
</div>
{% endfor %}
{% if page.form %}
{% include 'partials/form.twig' %}
{% endif %}
{% endblock %}