firefly-iii/resources/views/error.twig
2022-01-30 07:05:51 +01:00

33 lines
986 B
Twig

{% extends "./layout/guest" %}
{% 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 %}