{# Let's set some globals for use on every template #} {% set site_title = getSetting('site_name')%} {% set site_description = getSetting('site_description')%} {% set site_twitter = getSetting('site_twitter')%} {% set site_facebook = getSetting('site_facebook')%} {% set live = get('live') %} {% block title %}{{ site_title }}{% endblock %} {% block meta %} {% endblock %} {% block hiderobots %} {% endblock %} {# This is gross. But since we are axajing pages such as schedule that need document ready... we need to ensure jquery is available no matter what #} {% block head_extra %}{% endblock %} {% include "static/images/sprite.svg" %} {# body class is actuall in #main since we are ajaxing main in here all the time #} {% block main %}
{% block header %} {% include "templates/partials/header.html" %} {% endblock %}
{# {% include "templates/partials/parachute.html" %} #} {% block above_content %}{% endblock %}
{% block content_wrap %}
{% block content %}{% endblock %}
{% endblock %}
{% block footer %} {% include "templates/partials/footer.html" %} {% endblock %}
{% block scripts_extra %}{% endblock %}
{% endblock %} {% block scripts %} {% endblock %}