17 lines
330 B
Plaintext
17 lines
330 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Tera Demo</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% if blocking_error %}
|
||
|
<div>
|
||
|
{{ blocking_error }}
|
||
|
</div>
|
||
|
{% else %}
|
||
|
{% block content %}{% endblock content %}
|
||
|
{% endif %}
|
||
|
</body>
|
||
|
</html>
|