{% comment %}
this frame serves to create a consistent base layout for different styles, such that styles
can be switched sort-of-simply (e.g., the menu items should still be
and everything
should still extend {% block content %}; at best, one would only replace BASE_TEMPLATE,
to another template that overrides/extends the appropriate blocks in this template
{% endcomment %}
{% load static %}
{% load ext %}
{# possibly add lang='en' #}
{% block language_meta %}
{% endblock language_meta %}
{% block extra_meta %}{% endblock extra_meta %}
{% block header_feeds %}{% endblock header_feeds %}
{% block title %}{{ TITLE_BASE }}{% endblock title %}
{% block framework_css %}
{% endblock framework_css %}
{% block widget_css %}
{% endblock widget_css %}
{% block theme_css %}
{% endblock theme_css %}
{% block site_css %}
{% endblock site_css %}
{% block header %}
{% endblock header %}