18 lines
480 B
HTML
18 lines
480 B
HTML
<!doctype html>
|
|
{% load django_vite %}
|
|
<html lang="en" data-theme="dim">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block title %}{% endblock %}</title>
|
|
{% if debug %}{% vite_hmr_client %}{% endif %}
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|