mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 22:11:17 +00:00
11 lines
248 B
HTML
11 lines
248 B
HTML
{% extends "_layout.html" %}
|
|
|
|
{%- block title -%}
|
|
404: Not Found
|
|
{%- endblock -%}
|
|
|
|
{%- block content -%}
|
|
<h1>404: Not Found</h1>
|
|
<h2><a href="{{ req.url_for_static("start_handler")? }}">Back to the first page.</a></h2>
|
|
{%- endblock -%}
|