lookingglass/hyperglass/render/templates/404.html.j2
Matt Love 2f2c32422e 🚀🎨💄
2019-08-06 01:09:55 -07:00

12 lines
No EOL
440 B
Django/Jinja

{% extends "templates/base.html.j2" %}
{% block content %}
<div class="ui vertical center aligned segment" id="lg-maincontainer">
{% import "templates/errortext.html.j2" as errortext %}
{{ errortext.errortext(branding.text.error404.title, branding.text.error404.subtitle.format(uri=uri), branding.text.error404.button, "h1", "h3") }}
</div>
{% endblock %}
{% block footer %}
{% include "templates/footer.html.j2" %}
{% endblock %}