timetracker/src/web/tracker/templates/base.html

37 lines
1.6 KiB
HTML
Raw Normal View History

2022-12-31 13:18:27 +00:00
<!doctype html>
<html lang="en">
{% load static %}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}No Title{% endblock title %}</title>
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="{% static 'base.css' %}" />
</head>
2023-01-02 18:37:49 +00:00
<body class="dark">
2023-01-03 18:01:10 +00:00
<div class="dark:bg-gray-800 h-screen">
2022-12-31 13:18:27 +00:00
<nav class="mb-4 bg-white dark:bg-gray-900 border-gray-200 rounded">
<div class="container flex flex-wrap items-center justify-between mx-auto">
<a href="#" class="flex items-center">
<span class="text-4xl"></span>
2023-01-02 18:37:49 +00:00
<span class="self-center text-xl font-semibold whitespace-nowrap text-white">Timetracker</span>
2022-12-31 13:18:27 +00:00
</a>
<div class="w-full md:block md:w-auto">
<ul
2023-01-03 18:01:10 +00:00
class="flex flex-col md:flex-row p-4 mt-4 dark:text-white">
2022-12-31 13:18:27 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_game' %}">New Game</a></li>
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_purchase' %}">New Purchase</a></li>
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_session' %}">New Session</a></li>
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'list_sessions' %}">All Sessions</a></li>
</ul>
</div>
</div>
</nav>
{% block content %}No content here.{% endblock %}
2023-01-03 18:01:10 +00:00
</div>
2022-12-31 13:18:27 +00:00
</body>
</html>