blob: 9f851898da8a9f438bf91b60b7960b6ddbbba618 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="../static/logo.svg" />
<link rel="stylesheet" type="text/css" href="../static/styles.css" />
<link rel="alternate" type="application/atom+xml" href="$PREFIX/commits.xml" title="$PROJECT_NAME - commit feed" hreflang="en" />
<link rel="alternate" type="application/atom+xml" href="$PREFIX/tags.xml" title="$PROJECT_NAME - tags feed" hreflang="en" />
<title>$PROJECT_NAME - $PROJECT_DESCRIPTION</title>
<meta property="og:site_name" content="Repository for $PROJECT_NAME" />
<meta property="og:locale" content="en" />
<meta property="og:title" content="$PROJECT_NAME" />
<meta property="og:description" content="$PROJECT_DESCRIPTION" />
<meta name="description" content="$PROJECT_DESCRIPTION" />
</head>
<body>
<header>
<div id="horizontal-aligner-of-logo-and-header-items">
<img id="repository-logo" src="../static/logo.svg" alt="Logo image of the repository" />
<div id="vertical-aligner-of-project-name-and-description">
<h1>
$PROJECT_NAME
</h1>
<h2>
$PROJECT_DESCRIPTION
</h2>
<code>
git clone $PROJECT_CLONE_URL
</code>
</div>
</div>
<nav>
<ul>
<li>
<a href="$PREFIX/">
files
</a>
</li>
<li class="selected-nav-item">
<a href="$PREFIX/log">
log
</a>
</li>
<li>
<a href="$PREFIX/refs/">
refs
</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="log-commit-box">
<p>
<a href="$PREFIX/commits/$SHA.html">739a235c</a>
|
EuAndreh
<a href="$PREFIX/commits/SHA.html" class="log-head-highlight">HEAD</a>
<a href="$PREFIX/tree/main.html" class="log-branch-highlight">main</a>
<a href="$PREFIX/tags/v0.2.1.html" class="log-tag-highlight">v0.2.1</a>
</p>
<pre>Only display filename if it's set
This prevents None from showing up in different places when pastes are
submitted through the API.</pre>
<pre>Notes:
See CI logs with:
git notes --ref=refs/notes/ci-logs show 92bfa3c5f06558cebcfa06bf78159e76254e07fd
git notes --ref=refs/notes/ci-data show 92bfa3c5f06558cebcfa06bf78159e76254e07fd</pre>
</div>
</main>
<footer>
<hr />
<p>
Generated by gistatic $VERSION at $NOW
</p>
</footer>
</body>
</html>
|