mirror of
https://github.com/bugsink/bugsink.git
synced 2026-02-11 16:28:36 -06:00
25 lines
857 B
HTML
25 lines
857 B
HTML
{% load static tailwind_tags %}<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{% block title %}Bugsink{% endblock %}</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
{% tailwind_css %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="content">
|
|
<div class="flex pl-4 bg-slate-200">
|
|
<a href="/issues/1/"><div class="p-4 hover:bg-slate-400">My first project</div></a> {# or, if you're single-org, or single-project, just show that #}
|
|
{# <div class="p-4 hover:bg-slate-400">Settings</div>#}
|
|
<a href="/admin/"><div class="p-4 hover:bg-slate-400">Admin</div></a>
|
|
</div>
|
|
<div>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|