{% extends "styleguide2/base.html" %} {% load wagtailcore_tags %} {% block content %} {% block navbar %} {% include 'styleguide2/includes/organisms/layout/navbar.html' with selected_item=page.get_menu_title %} {% endblock %} {% block header %} {% include 'styleguide2/includes/organisms/header/simple_header.html' with title=page.title %} {% endblock %}
{% block inner_content %}
{% for block in page.content %} {% if block.block_type != "newsletter" %}
{% include_block block %}
{% else %} {% include_block block %} {% endif %} {% endfor %}
{% endblock %}
{% endblock %}