mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
19 lines
342 B
HTML
19 lines
342 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<style>
|
|
th {
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% if error %}
|
|
<div style="padding: 1em; margin: 1em; border: 3px solid red;">{{ error }}</div>
|
|
{% endif %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|