mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
23 lines
618 B
HTML
23 lines
618 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<link rel="stylesheet" href="/-/static/app.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
{% if error %}
|
|
<div style="padding: 1em; margin: 1em; border: 3px solid red;">{{ error }}</div>
|
|
{% endif %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
<div class="ft">
|
|
Powered by <a href="https://github.com/simonw/datasette">Datasette</a>
|
|
{% if took_ms %}· Query took {{ took_ms|round(3) }}ms{% endif %}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|