mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
18 lines
450 B
HTML
18 lines
450 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{% if title %}{{ title }}{% else %}Error {{ status }}{% endif %}{% endblock %}
|
|
|
|
{% block nav %}
|
|
<p class="crumbs">
|
|
<a href="{{ urls.instance() }}">home</a>
|
|
</p>
|
|
{{ super() }}
|
|
{% 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 %}
|