23 lines
578 B
HTML
23 lines
578 B
HTML
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Tunic Tracker Redux</title>
|
|
<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" />
|
|
{% comment %} <meta http-equiv="refresh" content="3"> {% endcomment %}
|
|
{% load static tailwind_tags %}
|
|
{% tailwind_css %}
|
|
{% load static %}
|
|
<script src="{% static 'tracker/assets/test.js' %}"></script>
|
|
|
|
</head>
|
|
<body class="bg-[#242424]">
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|