summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: f3c81fb9dc61dab40339803ff29f6d458828e0ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title>Steven Le Rouzic</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=PT+Serif&family=PT+Serif+Caption&family=Roboto+Mono&display=swap" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="{{ get_url(path="theme.css") }}" />
    <script src="https://unpkg.com/htmx.org@1.9.6"></script>
</head>
<body hx-boost="true">
    {% block content %}{% endblock %}
</body>
</html>