fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/_base/404.html

16 lines
392 B
HTML

{% extends "_layout.html" %}
{% load i18n %}
{% block main_content %}
<div class="container">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">404</h3>
</div>
<div class="panel-content">
{% trans "The page you are looking for is nowhere to be found!" %}
</div>
</div>
</div>
{% endblock %}