{% extends "base.html" %} {% comment %} Consider this deprecated. This is here for the sake of backwards compatibility with old-style defaultlayout templating. See https://github.com/fusionbox/django-widgy/pull/41 {% endcomment %} {% load widgy_tags %} {% load pages_tags %} {% load compress %} {% block title %}{{ page.meta_title }} {{ block.super }}{% endblock %} {% block css %} {{ block.super }} {% compress css %} {% for scss_file in 'WIDGY_MEZZANINE_SITE'|scss_files %} {% endfor %} {% endcompress %} {% endblock %} {% block js %} {{ block.super }} {% compress js %} {% for js_file in 'WIDGY_MEZZANINE_SITE'|js_files %} {% endfor %} {% endcompress %} {% endblock %} {% block seo_description %}{{ page.description }}{% endblock %} {% block seo_keywords %}{{ page.keywords_string }}{% endblock %} {% block breadcrumb %}
{% page_menu "pages/menus/breadcrumb.html" %}
{% endblock %} {% block leftnav %} {% endblock %} {% block content %} {% render_root page.get_content_model 'root_node' %} {% endblock %}