firefly-iii/resources/views/v1/error.twig

33 lines
992 B
Twig
Raw Normal View History

2016-11-06 01:11:43 -06:00
{% extends "./layout/guest" %}
{% block content %}
2015-06-27 01:06:24 -05:00
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
2015-07-04 23:18:02 -05:00
<h3 class="text-danger">Sorry, an error occurred.</h3>
2015-06-27 01:06:24 -05:00
</div>
</div>
2015-06-27 01:06:24 -05:00
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>{{ message |default('General unknown errror')|raw }}</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p>
If you do not know how to handle this error, please open an issue on
2018-01-12 11:42:48 -06:00
<a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>
or <a href="mailto:thegrumpydictator@gmail.com">send me a message</a>.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<p><a href="{{ route('index') }}">Follow this link back to the index.</a></p>
2015-06-27 01:06:24 -05:00
</div>
</div>
{% endblock %}