<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>{% block title %}rgit{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
{%- block head -%}{%- endblock %}
</head>
<body>
<header>
<h1>
<a href="/" class="no-hover">🏡</a>
{% block header -%}Git repository browser{%- endblock %}
</h1>
</header>
{%- block nav -%}
<nav>
<a href="/" class="active">index</a>
</nav>
{%- endblock -%}
<main>
{%- block content %}{% endblock -%}
</main>
<footer>
generated by <a href="https://git.inept.dev/~doyle/rgit.git/about" target="_blank">rgit</a> v{{ crate::CRATE_VERSION }} at {{ time::OffsetDateTime::now_utc().to_string() }}
</footer>
</body>
</html>