repos
/ repos-rust master

repos-rust

mirror archived upstream

A minimal self-hosted git browser on Rust axum: bare repos rendered as a website with commits, diffs, syntax-highlighted blobs, atom feeds, and clone over HTTPS.

axumdockergitgit-browsergitoxidegixrustself-hosted

265 B · 11 lines · HTML Raw History
 1{% extends "base.html" %}
 2{% block title %}not found{% endblock %}
 3
 4{% block main %}
 5<section class="hero">
 6  <h1>not found</h1>
 7  <p class="lede">no repository named <code>{{ name }}</code>.</p>
 8  <p><a href="/">back to repo list</a></p>
 9</section>
10{% endblock %}