1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

46 lines
1.0 KiB
HTML
Raw Normal View History

2019-05-07 23:21:41 -07:00
{% extends "templates/base.html" %}
<!DOCTYPE html>
<html>
2019-05-07 23:21:41 -07:00
<head>
</head>
{% block content %}
2019-05-07 23:21:41 -07:00
<body class="has-background-danger">
<section class="section">
<nav class="navbar has-background-danger">
<div class="container">
<div class="navbar-brand">
2019-05-07 23:21:41 -07:00
</div>
</div>
</nav>
2019-05-07 23:21:41 -07:00
<br>
<br>
<br>
<br>
<br>
<br>
</section>
<section>
2019-05-07 23:21:41 -07:00
<div class="container has-text-centered">
<h1 class="title is-size-1">
2019-06-10 12:22:38 -07:00
{{ branding["text"]["500"]["title"] }}
2019-05-07 23:21:41 -07:00
</h1>
<h2 class="subtitle is-size-3">
2019-06-10 12:22:38 -07:00
{{ branding["text"]["500"]["subtitle"] }}
2019-05-07 23:21:41 -07:00
</h2>
<br>
2019-06-10 12:22:38 -07:00
<a href="/" class="button is-medium is-rounded is-inverted is-danger is-outlined">{{ branding["text"]["500"]["button"] }}</a>
2019-05-07 23:21:41 -07:00
</div>
</section>
2019-06-10 12:22:38 -07:00
{% if branding["footer"]["enable"] == true %}
{% include "templates/footer.html" %}
{% endif %}
2019-06-10 12:22:38 -07:00
{% if branding["credit"]["enable"] == true %}
{% include "templates/credit.html" %}
{% endif %}
{% endblock %}
2019-05-07 23:21:41 -07:00
</body>
</html>