aboutsummaryrefslogtreecommitdiffstats
path: root/browser/templates/base.html.j2
blob: a8a6cf74b22a20e869e5cfecb53a494ccc9516cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="preload" href="/static/InclusiveSans-Regular.ttf" as="font" type="font/woff2" crossorigin="anonymous">
    <link rel="stylesheet" href="/static/styles.css"></link>
    {% block head_meta %}
    <title>Database browser</title>
    <meta name="description" content="Database browser for log_db">
    {% endblock %}

    <!-- -- https://leanrada.com/htmz/ -->
    <iframe hidden name=htmz onload="setTimeout(()=>document.querySelector(contentWindow.location.hash||null)?.replaceWith(...contentDocument.body.childNodes))"></iframe>
</head>
<body>
  <h1><a href="/">Database browser</a></h1>
  {% block content %}{% endblock %}
</body>
</html>