microblog.pub/app/templates/error.html

13 lines
274 B
HTML
Raw Normal View History

2022-08-28 17:32:05 +00:00
{%- import "utils.html" as utils with context -%}
{% extends "layout.html" %}
{% block head %}
<title>{{ title }}</title>
{% endblock %}
{% block content %}
<div class="centered primary-color box">
<h1 class="error-title">{{ title | safe }}</h1>
2022-08-28 17:32:05 +00:00
</div>
{% endblock %}