{% extends "base.html" %} {% block title %}{{ section.title }} — sdme{% endblock %} {% block content %}

{{ section.title }}

{{ section.description }}

{% for page in section.pages %}

{% if page.extra.status is defined and page.extra.status == "soon" %} {{ page.title }} coming soon {% else %} {{ page.title }} {% endif %}

{{ page.description }}

{% endfor %}
{% endblock %}