24 lines
760 B
HTML
24 lines
760 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<script
|
|
src="https://unpkg.com/htmx.org@1.9.6"
|
|
integrity="sha384-FhXw7b6AlE/jyjlZH5iHa/tTe9EpJ1Y55RjcgPbjeWMskSxZt1v9qkxLJWNJaGni"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<link rel="stylesheet" href="/styles.css" />
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css"
|
|
/>
|
|
<title>{% block title %}{{ title }} - My Site{% endblock %}</title>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
<p>Placeholder content</p>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|