{% macro flash( app, type ) %}
{% for message in app.flashes(type) %}
<div class="alert alert-{{ type }} col-md-10 col-lg-8 mx-auto my-4">
{{ message|raw }}
</div>
{% endfor %}
{% endmacro %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="../assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="../assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Lowdefest Tickets: {{ block('title') }}</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
{% block stylesheets %}
<link href="{{ asset('css/feStyles.css') }}" rel="stylesheet">
{% endblock stylesheets %}
<style id="progressStyles">
body::before {
content: '';
display: block;
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 3px;
background: #0d6efd;
transform: scaleX(0.3);
transform-origin: 0 0;
will-change: transform;
z-index: 1000;
}
</style>
</head>
<body class="">
<div class="container-fluid">
{% import _self as helper %}
<div class="content">
<header class="header">
<div class="branding">
<img src="{{ asset('img/Logo.gif') }}" class="branding">
</div>
</header>
{{ helper.flash( app, 'danger' ) }}
{{ helper.flash( app, 'warning' ) }}
{{ helper.flash( app, 'success' ) }}
{{ helper.flash( app, 'info' ) }}
{% block body %}{% endblock %}
</div>
{#
<footer>powered by <a href="https://www.seehoo.co.uk/">Seehoo</a> #loveyourpeople</footer>
#}
</div>
{% block javascripts %}
<script>
let i, c, u, a, s, l, f, d, m;
i = 15e3;
c = 4e4;
u = "#0d6efd";
a = function (n) {
return "\n ".concat("body::before", " { \n transform: scaleX(0.99);\n transition-duration: ").concat(n, "ms;\n transition-timing-function: cubic-bezier(0,1,0.5,1);\n }\n")
};
s = function () {
return "\n ".concat("body::before", " {\n transform: scaleX(1);\n transition-duration: ").concat(300, "ms;\n animation: none;\n background-image: none;\n }\n")
};
l = function () {
return "\n ".concat("body::before", " {\n transform: scaleX(0);\n transition-duration: 0ms;\n animation: none;\n background-image: none;\n }\n")
};
f = function () {
return "\n @keyframes shimmer {\n from {\n left: -80%; \n width: 80%; \n }\n \n to {\n left: 110%; \n width: 10%;\n }\n }\n"
};
d = function (n) {
return "\n ".concat("body::before", " {\n transform: scaleX(1);\n transition-duration: 0ms;\n background: ").concat(n, ";\n animation: shimmer 2s infinite;\n }\n ")
};
m = function (n) {
document && document.hidden ? n() : requestAnimationFrame((function () {
n()
}
))
};
let g = function (n) {
const e = (n || {}).sheet;
if (e) {
let t = !1
, o = !1
, r = null
, g = null
, R = null;
return {
inProgress: function() {
return t
},
start: function () {
const n = arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : i;
t || (t = !0,
m((function () {
e.insertRule(a(n), e.cssRules.length)
}
)),
g = setTimeout((function () {
t && (o = !0,
m((function () {
e.insertRule(f(), e.cssRules.length),
e.insertRule(d(u), e.cssRules.length)
}
)))
}
), i),
R = setTimeout((function () {
t && (t = !1,
o = !1,
m((function () {
e.insertRule(l(), e.cssRules.length)
}
)),
clearTimeout(r),
clearTimeout(g),
clearTimeout(R))
}
), c))
},
end: function () {
if (t) {
if (t = !1,
o)
return o = !1,
clearTimeout(r),
clearTimeout(R),
clearTimeout(g),
void m((function () {
e.insertRule(l(), e.cssRules.length)
}
));
m((function () {
e.insertRule(s(), e.cssRules.length)
}
)),
r = setTimeout((function () {
clearTimeout(r),
clearTimeout(R),
clearTimeout(g),
m((function () {
e.insertRule(l(), e.cssRules.length)
}
))
}
), 800)
}
},
reset: function () {
t = !1,
o = !1,
clearTimeout(r),
clearTimeout(g),
clearTimeout(R),
m((function () {
e.insertRule(l(), e.cssRules.length)
}
))
}
}
}
};
!function () {
const n = document.getElementById("progressStyles");
n && n.sheet && (window.seewhen_progress_bar = g(n),
window.seewhen_progress_bar && window.seewhen_progress_bar.start && window.seewhen_progress_bar.start())
}()
</script>
{# <script src="{{ asset('packages/ui.js') }}"></script>#}
{{ encore_entry_script_tags('app') }}
{% endblock javascripts %}
{% block modals %}
{% endblock modals%}
</body>
</html>