mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
11 lines
319 B
HTML
11 lines
319 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{% if title %}{{ title }}{% else %}Error {{ status }}{% endif %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{% if title %}{{ title }}{% else %}Error {{ status }}{% endif %}</h1>
|
|
|
|
<div style="padding: 1em; margin: 1em 0; border: 3px solid red;">{{ error }}</div>
|
|
|
|
{% endblock %}
|