firefly-iii/resources/views/error.twig

22 lines
594 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') }}</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 %}