Files
stevenlr.com/templates/base.html
2023-10-31 23:23:51 +01:00

17 lines
621 B
HTML

<!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>