9 lines
267 B
HTML
9 lines
267 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 URL was not found.</span>
|
|
{%- endcall -%}
|
|
{%- endblock -%}
|