forked from CGM_Public/pretix_original
82 lines
4.0 KiB
HTML
82 lines
4.0 KiB
HTML
{% load compress %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load safelink %}
|
|
{% load statici18n %}
|
|
{% load thumb %}
|
|
<!DOCTYPE html>
|
|
<html{% if rtl %} dir="rtl" class="rtl"{% endif %} lang="{{ html_locale }}">
|
|
<head>
|
|
<title>{% block thetitle %}{% endblock %}</title>
|
|
{% if css_file %}
|
|
<link rel="stylesheet" type="text/css" href="{{ css_file }}" />
|
|
{% else %}
|
|
{% compress css %}
|
|
<link rel="stylesheet" type="text/x-scss" href="{% static "pretixpresale/scss/main.scss" %}"/>
|
|
{% endcompress %}
|
|
{% endif %}
|
|
|
|
{% include "pretixpresale/fragment_js.html" %}
|
|
<meta name="referrer" content="origin">
|
|
{{ html_head|safe }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
|
|
{% block custom_header %}{% endblock %}
|
|
{% if settings.favicon %}
|
|
<link rel="icon" href="{{ settings.favicon|thumb:'16x16^' }}">
|
|
<link rel="shortcut icon" href="{{ settings.favicon|thumb:'16x16^' }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ settings.favicon|thumb:'32x32^' }}">
|
|
<link rel="icon" type="image/png" sizes="194x194" href="{{ settings.favicon|thumb:'194x194^' }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ settings.favicon|thumb:'16x16^' }}">
|
|
{% elif development_warning or debug_warning %}
|
|
<link rel="shortcut icon" href="{% static "pretixbase/img/favicon-debug.ico" %}">
|
|
{% else %}
|
|
<link rel="icon" href="{% static "pretixbase/img/favicon.ico" %}">
|
|
<link rel="shortcut icon" href="{% static "pretixbase/img/favicon.ico" %}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static "pretixbase/img/icons/favicon-32x32.png" %}">
|
|
<link rel="icon" type="image/png" sizes="194x194" href="{% static "pretixbase/img/icons/favicon-194x194.png" %}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static "pretixbase/img/icons/favicon-16x16.png" %}">
|
|
{% endif %}
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static "pretixbase/img/icons/apple-touch-icon.png" %}">
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{% static "pretixbase/img/icons/android-chrome-192x192.png" %}">
|
|
<link rel="manifest" href="{% url "presale:site.webmanifest" %}">
|
|
<link rel="mask-icon" href="{% static "pretixbase/img/icons/safari-pinned-tab.svg" %}" color="{{ settings.primary_color|default:"#3b1c4a" }}">
|
|
<meta name="msapplication-TileColor" content="{{ settings.primary_color|default:"#3b1c4a" }}">
|
|
<meta name="msapplication-config" content="{% url "presale:browserconfig.xml" %}">
|
|
<meta name="theme-color" content="{{ settings.primary_color|default:"#3b1c4a" }}">
|
|
</head>
|
|
<body class="nojs" data-locale="{{ request.LANGUAGE_CODE }}" data-now="{% now "U.u" %}" data-datetimeformat="{{ js_datetime_format }}" data-timeformat="{{ js_time_format }}" data-dateformat="{{ js_date_format }}" data-datetimelocale="{{ js_locale }}" data-currency="{{ request.event.currency }}">
|
|
{{ html_page_header|safe }}
|
|
{% block above %}
|
|
{% endblock %}
|
|
<div class="container main-box">
|
|
{% block page %}
|
|
{% endblock %}
|
|
<footer>
|
|
{% block footer %}
|
|
{% endblock %}
|
|
{% if footer_text %}
|
|
{{ footer_text }}
|
|
·
|
|
{% endif %}
|
|
{% for f in footer %}
|
|
<a href="{% safelink f.url %}" target="_blank" rel="noopener">{{ f.label }}</a>
|
|
·
|
|
{% endfor %}
|
|
{% include "pretixpresale/base_footer.html" %}
|
|
</footer>
|
|
</div>
|
|
{% include "pretixpresale/fragment_modals.html" %}
|
|
{% if DEBUG %}
|
|
<script type="text/javascript" src="{% url 'javascript-catalog' lang=request.LANGUAGE_CODE %}" async></script>
|
|
{% else %}
|
|
<script src="{% statici18n LANGUAGE_CODE %}" async></script>
|
|
{% endif %}
|
|
{% if request.session.iframe_session %}
|
|
{% compress js %}
|
|
<script type="text/javascript" src="{% static "iframeresizer/iframeResizer.contentWindow.js" %}"></script>
|
|
{% endcompress %}
|
|
{% endif %}
|
|
{{ html_foot|safe }}
|
|
</body>
|
|
</html>
|