aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 64ae319ad869778c7ddb66e98e01d629591ba057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>index.cooking - {% block title %}{% endblock %}</title>
    <script src="/static/scripts/htmx.js" defer></script>
    <link href="/static/style/style.css" rel="stylesheet" />
  </head>
  <body>
    {% include "/components/header.html" %}
    <h1>{% block heading %}Some heading!{% endblock %}</h1>
    {% block content %}{% endblock %}
  </body>
</html>