Files
pyrom/app/templates/common/404.html
2026-04-26 14:04:24 +03:00

9 lines
268 B
HTML

{%- from 'common/macros.html' import subheader -%}
{%- extends 'base.html' -%}
{%- block title -%}Not found{%- endblock -%}
{%- block content -%}
{%- call() subheader('404 Not Found') -%}
<span>The requested page was not found.</span>
{%- endcall -%}
{%- endblock -%}