vsgallery/tpl/error.html

12 lines
256 B
HTML

{% 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 %}