28 lines
573 B
HTML
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>
|