blob: c353cbd2b0610baf07ba3c44fdaec7015cac3c0c (
plain)
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
|
<!DOCTYPE html>
<!--
vim: shiftwidth=4 tabstop=4 noexpandtab
-->
<html>
<head>
<title>{{.Params.friendly_name}}</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ "libweb.css" | absURL }}" type="text/css">
</head>
<body>
<main>
<h1>{{.Params.friendly_name}}</h1>
<div class="card">
<p class="card-first-item">{{ .Params.description }}</p>
<p>State: {{ .Params.state }}</p>
<p>Browse source code: <a href="https://cgit.xengineering.eu/{{ .Params.name }}/tree">cgit tree</a></p>
<p>Get updates: <a href="https://cgit.xengineering.eu/{{ .Params.name }}/atom">Atom feed</a></p>
<p style="" class="card-last-item">Clone repository: git clone https://cgit.xengineering.eu/{{ .Params.name }}</p>
</div>
{{.Content}}
<br>
<hr>
<footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer>
</main>
</body>
</html>
|