mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
43 lines
885 B
HTML
43 lines
885 B
HTML
{% extends "templates/base.html" %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
</head>
|
|
|
|
{% block content %}
|
|
|
|
<body class="has-background-danger">
|
|
<section class="section">
|
|
<nav class="navbar has-background-danger">
|
|
<div class="navbar-brand has-background-danger">
|
|
</div>
|
|
</nav>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
</section>
|
|
<section>
|
|
<div class="container has-text-centered">
|
|
<h1 class="title is-size-1">
|
|
{{ branding["text"]["404"]["title"] }}
|
|
</h1>
|
|
<h2 class="subtitle is-size-3">
|
|
{{ branding["text"]["404"]["subtitle"] }}
|
|
</h2>
|
|
<br>
|
|
</div>
|
|
</section>
|
|
{% if branding["footer"]["enable"] == true %}
|
|
{% include "templates/footer.html" %}
|
|
{% endif %}
|
|
{% if branding["credit"]["enable"] == true %}
|
|
{% include "templates/credit.html" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|