Files @ 7d18387670ca
Branch filter:

Location: symposion_app/pinaxcon/templates/site_base.html

James Polley
If no boardingpass, make one

- Use the first template in the system
- If there's no template, use /tickets/review as it at least gives
- people an overview of what they've paid for and warns them of
missing categories
{% load staticfiles %}
{% load i18n %}
{% load sitetree %}
{% load staticfiles %}

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>{% block head_title_base %}{% if SITE_NAME %}{{ SITE_NAME }} | {% endif %}{% block head_title %}{% endblock %}{% endblock %}</title>

    {% block styles %}
      <link href="{% static 'css/bootstrap.css' %}" rel="stylesheet">
      <link href="{% static 'css/app.css' %}" rel="stylesheet">
      <link rel="stylesheet" href="https://cdn.pride.codes/css/bar_body.css">

      <link rel="apple-touch-icon-precomposed" sizes="57x57" href="{% static 'lca2018/images/apple-touch-icon-57x57.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{% static 'lca2018/images/apple-touch-icon-114x114.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{% static 'lca2018/images/apple-touch-icon-72x72.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{% static 'lca2018/images/apple-touch-icon-144x144.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="60x60" href="{% static 'lca2018/images/apple-touch-icon-60x60.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="120x120" href="{% static 'lca2018/images/apple-touch-icon-120x120.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="76x76" href="{% static 'lca2018/images/apple-touch-icon-76x76.png' %}" />
      <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{% static 'lca2018/images/apple-touch-icon-152x152.png' %}" />
      <link rel="icon" type="image/png" href="{% static 'lca2018/images/favicon-196x196.png' %}" sizes="196x196" />
      <link rel="icon" type="image/png" href="{% static 'lca2018/images/favicon-96x96.png' %}" sizes="96x96" />
      <link rel="icon" type="image/png" href="{% static 'lca2018/images/favicon-32x32.png' %}" sizes="32x32" />
      <link rel="icon" type="image/png" href="{% static 'lca2018/images/favicon-16x16.png' %}" sizes="16x16" />
      <link rel="icon" type="image/png" href="{% static 'lca2018/images/favicon-128.png' %}" sizes="128x128" />
      <link rel="icon" href="{% static 'lca2018/images/favicon.png' %}" sizes="512x512" />
      <meta name="application-name" content="&nbsp;"/>
      <meta name="msapplication-TileColor" content="#FFFFFF" />
      <meta name="msapplication-TileImage" content="{% static 'lca2018/images/mstile-144x144.png' %}" />
      <meta name="msapplication-square70x70logo" content="{% static 'lca2018/images/mstile-70x70.png' %}" />
      <meta name="msapplication-square150x150logo" content="{% static 'lca2018/images/mstile-150x150.png' %}" />
      <meta name="msapplication-wide310x150logo" content="{% static 'lca2018/images/mstile-310x150.png' %}" />
      <meta name="msapplication-square310x310logo" content="{% static 'lca2018/images/mstile-310x310.png' %}" />

    {% block extra_style %}{% endblock %}
    {% endblock %}

    {% block extra_head_base %}
      {% block extra_head %}{% endblock %}
    {% endblock %}
  </head>
  <body class="{% block body_class %}{% endblock %}">
    <div class="container">

      <header class="clearfix hidden-print">
        {% sitetree_menu from "main" include "trunk" template "sitetree_header.html" %}
      </header>

      {% if messages %}
      <ul class="messagelist hidden-print">
          {% for message in messages %}
          <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
          {% endfor %}
      </ul>
      {% endif %}

      <div class="well">
        <h1>{% block header_title %}{% endblock %}</h1>
        <p>{% block header_paragraph %}{% endblock %}</p>
      </div>
      {% block body_base %}
        {% block body %}
          <div class="container">
            <div class="row">
              <div class="col-md-1">
                {% block body_outer %}
                {% endblock %}
                </div>
                <div class="col-md-10" >
                  {% block content %}
                  {% endblock %}
                </div>
              </div>
            </div>
          {% endblock %}
        {% endblock %}

        {% block footer_base %}
          {% block footer %}
          {% endblock %}
        {% endblock %}

        {% block scripts %}
          <script src="{% static 'js/app.js' %}" type="text/javascript"></script>
          <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
          <script src="{% static 'js/bootstrap.min.js' %}" type="text/javascript"></script>
          <script src="{% static 'js/jquery.formset.js' %}"></script>
          {% block extra_script %}
          {% endblock %}
          {% block scripts_extra %}{% endblock %}
      {% endblock %}

      <link rel='stylesheet' href='//cdn.jsdelivr.net/font-hack/2.020/css/hack-extended.min.css'>
      {% block extra_body_base %}
        {% block extra_body %}
        {% endblock %}
      {% endblock %}
    </div>
  </body>
</html>