25 lines
806 B
HTML
25 lines
806 B
HTML
{% load django_vite static %}<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
<title>Osiris</title>
|
|
<link rel="manifest" href="{% url 'manifest' %}">
|
|
<meta name="theme-color" content="#202a35">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<link rel="apple-touch-icon" href="{% static 'icons/icon-192.png' %}">
|
|
<link rel="icon" href="{% static 'icons/icon-192.png' %}">
|
|
{% vite_hmr_client %}
|
|
{% vite_asset 'src/main.ts' %}
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
{{ config|json_script:"osiris-config" }}
|
|
<script>
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => navigator.serviceWorker.register("/sw.js"));
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|