Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
22 lines
755 B
HTML
22 lines
755 B
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Fonrey{% endblock %}</title>
|
|
<link rel="stylesheet" href="{% static 'css/output.css' %}">
|
|
{% if use_flatpickr %}
|
|
<link rel="stylesheet" href="{% static 'vendor/flatpickr.min.css' %}">
|
|
{% endif %}
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
{% block content %}{% endblock %}
|
|
<script src="{% static 'vendor/htmx.min.js' %}"></script>
|
|
<script defer src="{% static 'vendor/alpine.min.js' %}"></script>
|
|
<script src="{% static 'js/main.js' %}"></script>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|