nixin-farm/nixin_farm_ssr/assets/views/base.html

33 lines
786 B
HTML
Raw Normal View History

<!DOCTYPE html>
2024-10-24 02:17:56 +00:00
<html lang="en">
<head>
<title>{% block title %}{% endblock title %}</title>
<!--
<script src="https://unpkg.com/htmx.org@2.0.0/dist/htmx.min.js"></script>
<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-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">
<script src="/static/htmx.min.js"></script>
2024-10-24 02:17:56 +00:00
{% block head %}
{% endblock head %}
</head>
2024-10-24 02:17:56 +00:00
<body>
<div class="full height">
{% block content %}
2024-10-24 02:17:56 +00:00
{% endblock content %}
</div>
{% block js %}
{% endblock js %}
</body>
</html>