2022-12-16 12:28:55 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>{{ forge_title }} - {{ repository_name }}</title>
|
|
|
|
<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 }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>{{ h1 }}</h1>
|
|
|
|
<h2>{{ repository_name }}</h2>
|
|
|
|
<p>clone url:{{ clone_url_prefix }}/{{ repository_name }}</p>
|
|
|
|
<nav>
|
|
|
|
{% if readme_file %}
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}index.html">about</a>
|
|
|
|
<a href="{{ relative_root }}files.html">files</a>
|
2022-12-16 12:28:55 -05:00
|
|
|
{% else %}
|
2022-12-16 12:58:30 -05:00
|
|
|
<a href="{{ relative_root }}index.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 />
|
|
|
|
{{ content|safe }}
|
|
|
|
<hr />
|
|
|
|
<footer>
|
|
|
|
<p>Generated by <a href="https://git.m455.casa/repo2html/">repo2html</a> using ersatz templates</p></footer></html>
|