2024-10-16 18:50:41 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2024-10-24 02:17:56 +00:00
|
|
|
<html lang="en">
|
2024-10-16 18:50:41 +00:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>{% block title %}{% endblock title %}</title>
|
2024-10-23 20:07:57 +00:00
|
|
|
<!--
|
2024-10-16 18:50:41 +00:00
|
|
|
<script src="https://unpkg.com/htmx.org@2.0.0/dist/htmx.min.js"></script>
|
2024-10-23 16:54:44 +00:00
|
|
|
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio"></script>
|
2024-10-24 02:17:56 +00:00
|
|
|
<script src="/static/tailwindcss.js"></script>
|
2024-10-23 20:07:57 +00:00
|
|
|
-->
|
2024-10-24 02:17:56 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/nixin.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/fj_index.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/fj_theme-light.css">
|
2024-10-23 20:07:57 +00:00
|
|
|
<script src="/static/htmx.min.js"></script>
|
2024-10-24 02:17:56 +00:00
|
|
|
|
2024-10-16 18:50:41 +00:00
|
|
|
{% block head %}
|
|
|
|
|
|
|
|
{% endblock head %}
|
|
|
|
</head>
|
|
|
|
|
2024-10-24 02:17:56 +00:00
|
|
|
<body>
|
|
|
|
<div class="full height">
|
2024-10-16 18:50:41 +00:00
|
|
|
{% block content %}
|
2024-10-24 02:17:56 +00:00
|
|
|
{% endblock content %}
|
2024-10-16 18:50:41 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block js %}
|
|
|
|
{% endblock js %}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|