This repository has been archived on 2024-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
tracman-server/views/error.html

12 lines
356 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-01 23:03:55 -06:00
{% if message %}<h2>{{message}}</h2>{% endif %}
2016-05-01 22:59:47 -06:00
{% if error %}<p>{{error}}</p>{% endif %}
2016-05-01 23:03:55 -06:00
<img style="width:100%" src="https://http.cat/{{code}}.jpg">
2016-03-31 17:06:21 -06:00
</div>
</section>
2016-05-01 23:03:55 -06:00
{% endblock %}