mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
11 lines
244 B
HTML
11 lines
244 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 %}
|