issue-tracker/forkosissuetracker/issuetracker_app/templates/base.html
Janik Haag 9e0b8e5699 Initial code dump
This is the initial code dump from Janik.
I obtained express permission to license it under MIT, see the next
commit.
2024-10-20 16:20:48 +02:00

28 lines
573 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css"> -->
<title>ForkOS Issues</title>
</head>
<body>
{% load static %}
<script src="{% static 'htmx.min.js' %}" defer></script>
<div>
<h1 onclick="location.href='{% url 'index' %}'">
ForkOS Issues
</h1>
</div>
<div>
{% block content %}
This content will be replaced by different html code for each page.
{% endblock %}
</div>
</body>
</html>