2023-12-17 15:43:25 -05:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<link href="/assets/main.css" rel="stylesheet" />
|
|
|
|
|
<!-- Allow any inheriting page to set it's own title -->
|
|
|
|
|
<title>{% block title %}{{ title }}{% endblock %}</title>
|
2023-12-18 18:31:15 -05:00
|
|
|
|
|
|
|
|
<script src="/assets/htmx.min.js"></script>
|
|
|
|
|
|
2023-12-17 15:43:25 -05:00
|
|
|
<!-- Allow any inheriting page to extend head with additional assets -->
|
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
<div id="content">
|
|
|
|
|
<!-- Inheriting pages will have their content rendered here, similar to app root in React, Angular, etc. -->
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|