firefly-iii/resources/views/error.twig

33 lines
986 B
Twig
Raw Normal View History

2022-01-30 00:05:51 -06:00
{% extends "./layout/guest" %}
2022-01-29 07:15:34 -06:00
{% block content %}
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h3 class="text-danger">Sorry, an error occurred.</h3>
</div>
</div>
<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
<a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a>
or <a href="mailto:james@firefly-iii.org">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>
</div>
</div>
{% endblock %}