2024-03-07 11:38:55 -06:00
|
|
|
{% load static %}
|
2024-03-02 10:43:49 -06:00
|
|
|
<!DOCTYPE html>
|
2024-03-05 14:03:35 -06:00
|
|
|
<html lang="en">
|
2024-03-02 10:43:49 -06:00
|
|
|
<head>
|
2024-03-09 23:20:35 -06:00
|
|
|
<title>Tunic Transition Tracker</title>
|
2024-03-05 14:03:35 -06:00
|
|
|
<meta name="description" content="Tunic Transition Tracker">
|
|
|
|
<meta name="keywords" content="HTML, CSS, JavaScript">
|
2024-03-02 10:43:49 -06:00
|
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta charset="UTF-8" />
|
2024-03-07 11:38:55 -06:00
|
|
|
<link rel="shortcut icon" href="{% static "tracker/images/neofox_flag_trans_256.png" %}">
|
2024-03-02 10:43:49 -06:00
|
|
|
{% load static tailwind_tags %}
|
|
|
|
{% tailwind_css %}
|
2024-04-06 19:23:44 -05:00
|
|
|
<link rel="stylesheet" href="https://csshake.surge.sh/csshake-default.css">
|
2024-04-06 22:48:16 -05:00
|
|
|
<script src="{% static "tracker/assets/button-functions.js" %}"></script>
|
|
|
|
<script type="module" src="{% static "tracker/assets/main.js" %}"></script>
|
2024-04-08 22:22:32 -05:00
|
|
|
<script type="module" src="{% static "tracker/assets/fetch-updates.js" %}"></script>
|
2024-04-06 19:23:44 -05:00
|
|
|
<script type="module" src="{% static "tracker/assets/translate-hints.js" %}"></script>
|
2024-03-02 10:43:49 -06:00
|
|
|
</head>
|
2024-04-06 19:23:44 -05:00
|
|
|
<body class="min-h-screen font-nerd bg-gradient-to-br from-bluelight-background-dark to-bluelight-background">
|
2024-03-02 10:43:49 -06:00
|
|
|
{% block content %}
|
2024-03-05 14:03:35 -06:00
|
|
|
{% endblock content %}
|
2024-03-02 10:43:49 -06:00
|
|
|
</body>
|
|
|
|
</html>
|