{% if config.get('CORNERSTONE_LOGO') %}
{% endif %} {{ config.get('CORNERSTONE_TITLE', 'CornerstoneCMS') }}
{% for item in menu %} {% if item.has_children() %}
{{ item.title }}
{% for child in item.children %}
{{ child.title }}
{% endfor %}
{% else %}
{{ item.title }}
{% endif %} {% endfor %}
{% block content %}{% endblock %}