vsgallery/tpl/error.html

12 lines
256 B
HTML
Raw Normal View History

2022-02-18 09:08:22 +00:00
{% extends tpl/layout.html %}
{% block title %}An Error Occured{% endblock %}
{% block content %}
<div class="container">
<p class="error">{{ $errormsg }}</p>
<p class="error">Return to <a href="{{ $script }}">Homepage</a></p>
</div>
{% endblock %}