tablejohn/templates/base.html
2023-08-09 22:32:08 +02:00

29 lines
901 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>{% block title %}{% endblock %} - {{ base.repo_name }}</title>
<link rel="icon" href="/logo.svg">
<link rel="stylesheet" href="{{ base.root }}/base.css" />
{% block head %}{% endblock %}
</head>
<body>
<nav>
<a href="{{ base.root }}/"><img src="{{ base.root }}/logo.svg"></a>
<a href="{{ base.root }}/" {% if base.current=="index" %} class="current" {% endif %}>
{{ base.repo_name }}
</a>
<a href="{{ base.root }}/commit/" {% if base.current=="commit" %} class="current" {% endif %}>
commit
</a>
<a href="{{ base.root }}/queue/" {% if base.current=="queue" %} class="current" {% endif %}>
queue
</a>
</nav>
{% block body %}{% endblock %}
</body>
</html>