tracman-server/views/error.html

14 lines
558 B
HTML
Raw Normal View History

2016-03-31 17:06:21 -06:00
{% extends 'templates/base.html' %}
{% block title %}{{ super() }} | {{ code }} Error{% endblock %}
{% block main %}
<section class='dark'>
<div class='container'>
2016-05-31 21:54:21 -06:00
{% if code %}<h2>{{code}}</h2>{% endif %}
{% if message %}<h3>{{message}}</h3>{% endif %}
2016-05-01 22:59:47 -06:00
{% if error %}<p>{{error}}</p>{% endif %}
2017-03-18 11:21:48 -06:00
<p>I would really appreciate it if you would <a href="https://github.com/Tracman-org/Server/issues/new">report this error</a>. </p>
2016-05-31 21:54:21 -06:00
{% if code %}<img style="width:100%" src="https://http.cat/{{code}}.jpg">{% endif %}
2016-03-31 17:06:21 -06:00
</div>
</section>
2016-05-01 23:03:55 -06:00
{% endblock %}