2022-12-16 12:28:55 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-12-18 12:59:59 -05:00
|
|
|
<title>git.example.com - {{ repository_name }}</title>
|
2022-12-16 12:28:55 -05:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale-1.0, user-scalable=yes" />
|
|
|
|
<link rel="icon" href="data:," />
|
|
|
|
<meta name="description" content="{{ repository_description }}" />
|
|
|
|
<style>
|
|
|
|
body { margin: 0 auto; max-width: 700px }
|
|
|
|
pre, code { background-color: #ffd9df }
|
|
|
|
pre { overflow: scroll; padding: 15px 20px; white-space: pre }
|
|
|
|
a { color: blue }
|
|
|
|
nav a { margin-right: 10px }
|
|
|
|
hr { border: 0; border-bottom: 1px solid black; margin-top: 16px }
|
|
|
|
td { padding: 0em .5em; vertical-align: top }
|
|
|
|
footer { font-size: small; text-align: right }
|
2022-12-25 18:40:45 -05:00
|
|
|
/* permalinks */
|
2022-12-26 11:09:48 -05:00
|
|
|
h1 a[href^="#"]::after, h2 a[href^="#"]::after, h3 a[href^="#"]::after, h4 a[href^="#"]::after, h5 a[href^="#"]::after, h6 a[href^="#"]::after { content: "¶"; opacity: 0; margin-left: .5em; }
|
|
|
|
h1:hover a[href^="#"]::after, h2:hover a[href^="#"]::after, h3:hover a[href^="#"]::after, h4:hover a[href^="#"]::after, h5:hover a[href^="#"]::after, h6:hover a[href^="#"]::after { opacity: 100; }
|
|
|
|
h1 a[href^="#"], h2 a[href^="#"], h3 a[href^="#"], h4 a[href^="#"], h5 a[href^="#"], h6 a[href^="#"] { text-decoration: none; }
|
2022-12-16 12:28:55 -05:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-18 12:59:59 -05:00
|
|
|
<h1>git.example.com</h1>
|
2023-01-08 12:27:39 -05:00
|
|
|
<h2>{{ repository_path_parent }}
|
|
|
|
{% if repository_path_parent %} / {% endif %}
|
|
|
|
{{ repository_name }}</h2>
|
|
|
|
<p>clone url: git://git.example.com/{{ repository_path }}</p>
|
2022-12-16 12:28:55 -05:00
|
|
|
<nav>
|
|
|
|
{% if readme_file %}
|
2022-12-18 12:59:59 -05:00
|
|
|
<a href="{{ relative_root }}{{ readme_file }}.html">about</a>
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}files.html">files</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
{% else %}
|
2022-12-18 12:59:59 -05:00
|
|
|
<a href="{{ relative_root }}files.html">files</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
{% endif %}
|
|
|
|
{% if license_file %}
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}{{ license_file }}.html">license</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
{% endif %}
|
|
|
|
{% if issues_file %}
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}{{ issues_file }}.html">issues</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
{% endif %}
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}commits.html">commits</a>
|
|
|
|
<a href="{{ relative_root }}contributors.html">contributors</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
</nav>
|
|
|
|
<hr />
|
2022-12-26 13:38:04 -05:00
|
|
|
{% if source_file %}
|
|
|
|
<p id="file-path">{{ source_file }}</p>
|
|
|
|
{% endif %}
|
2022-12-16 12:28:55 -05:00
|
|
|
{{ content|safe }}
|
|
|
|
<hr />
|
|
|
|
<footer>
|
2022-12-18 12:59:59 -05:00
|
|
|
<p>Generated by
|
|
|
|
<a href="https://git.m455.casa/repo2html/"
|
|
|
|
title="the repo2html git repo static renderer by m455 and pho4cexa">repo2html</a>
|
|
|
|
{{ repo2html_version }} using
|
|
|
|
<a href="http://wiki.call-cc.org/eggref/5/ersatz"
|
|
|
|
title="the ersatz Jinja2-like templating library by Ivan Raikov"
|
|
|
|
>ersatz</a> templates</p></footer></html>
|