🏡 index : ~doyle/rgit.git

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>{% block title %}rgit{% endblock %}</title>
    {% block head %}{% endblock %}

    <link rel="stylesheet" type="text/css" href="/style.css" />
</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://github.com/w4/rgit" target="_blank">rgit</a> v{{ crate::CRATE_VERSION }} at {{ time::OffsetDateTime::now_utc().to_string() }}
</footer>
</body>
</html>