wayver's git archive


a simple self-hosted git server
git clone https://git.wayver.dev/bile

templates/base.html@db2bc30f716095872b4ea33adafe072c0a8a7242

raw
Date Commit Message Author Files + -
2026-02-17 21:07 initial mvp wayverd 74 10800 0
...

1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5  <meta charset="utf-8">
6  <meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
7  <meta name="mobile-web-app-capable" content="yes">
8  <meta name="apple-mobile-web-app-capable" content="yes">
9  <meta name="application-name" content="Bile">
10  <meta name="apple-mobile-web-app-title" content="Bile">
11  <meta name="theme-color" content="#3f8142">
12  <meta name="msapplication-navbutton-color" content="#3f8142">
13  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
14  <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
15  <meta name="description" content="My self-hosted git repositories">
16  <title>{% block title %}{{crate::config().site_name}}{% endblock %}</title>
17  <link rel="manifest" href="manifest.json">
18  <link rel="icon" href="/favicon.ico" sizes="any">
19  <link rel="apple-touch-icon" href="/apple-touch-icon.png">
20  <link rel="stylesheet" type="text/css" href="/style.css" />
21  {% block head %}{% endblock %}
22</head>
23
24<body>
25  <div class="page-title">
26    <h1><a href="/">{{crate::config().site_name}}</a></h1>
27  </div>
28  <hr />
29  <div id="content">
30    {% block content %}{% endblock %}
31  </div>
32  <hr />
33  <div class="footer">running <a href="https://git.wayver.dev/bile">bile</a> v{{ crate::META_PACKAGE_VERSION }}</div>
34</body>
35
36</html>