seitime-frappe/frappe/www/404.html
Wolfram Schmidt f0e15338fe
fix: Grammar of error statement in 404 page (#15447)
Co-authored-by: Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com>
2021-12-27 11:23:30 +05:30

24 lines
573 B
HTML

{% extends "templates/web.html" %}
{%- block title -%}{{_("Not Found")}}{%- endblock -%}
{% block page_content %}
<script>
window.is_404 = true;
</script>
<div class="error-page">
<img class="img-404" src="/assets/frappe/images/ui-states/404.png" />
<div>
<h2 class="mb-1 mt-4">
{{ _("There's nothing here") }}
</h2>
<div class="text-muted error-text">
{{ _("The page you are looking for has gone missing.") }}
</div>
<div class="mt-6 back-to-home"><a href='/' class='btn btn-primary'>{{ _("Back to Home") }}</a></div>
</div>
</div>
{% endblock %}