{% extends "base.html" %} {% block title %}{{ page.title if page else "Services Offered" }}{% endblock %} {% block content %}

{{ page.title if page else "Services Offered" }}

{% if page and page.body %}

{{ page.body | nl2br }}

{% endif %} {% for section in sections %}

{{ section.area.title }}

{% with offerings = section.offerings %} {% include "_offerings.html" %} {% endwith %}
{% endfor %} {% endblock %}