vsgallery/tpl/notfound.html
2022-01-11 09:18:26 +01:00

12 lines
282 B
HTML

{% extends tpl/layout.html %}
{% block title %}Nothing found{% endblock %}
{% block content %}
<div class="container">
<p class="error">Nothing found with search term {{ $filter }}</p>
<p class="error">Return to <a href="{{ $script }}">Homepage</a></p>
</div>
{% endblock %}