seitime-frappe/webnotes/website/templates/pages/404.html
2013-12-11 10:54:35 +05:30

17 lines
No EOL
473 B
HTML

{% extends base_template %}
{% set title="Not Found" %}
{% block content %}
<div class="container content panel-container">
<div class="panel panel-danger">
<div class="panel-heading">
<i class="icon-exclamation-sign"></i> Page missing or moved
</div>
<div class="panel-body">
<p>We are very sorry for this, but the page you are looking for is missing
(this could be because of a typo in the address) or moved.</p>
</div>
</div>
</div>
{% endblock %}