mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
19 lines
458 B
HTML
19 lines
458 B
HTML
{% load compress %}
|
|
{% load i18n %}
|
|
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
{% compress css %}
|
|
<link rel="stylesheet" type="text/less" href="{% static "pretixbase/less/error.less" %}" />
|
|
{% endcompress %}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|