blob: 7d86fa814f25ea1d5ad924332723e84e213c84c7 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<!DOCTYPE html>
<!--
vim: shiftwidth=4 tabstop=4 noexpandtab
-->
<html>
<head>
<title>xengineering</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>
<h2>Git repositories</h2>
<p>This page shows all of my Git repositories. They are ordered by
their state attribute, which is defined in each section.</p>
<h4>Active</h4>
<p>The content of active repositories can be used right now.</p>
<ul>
{{- range.Pages }}
{{ if eq .Params.state "active" }}
<li><a href="{{ .RelPermalink }}">{{ .Params.name }}</a> - {{.Description}}</li>
{{ end }}
{{ end -}}
</ul>
<h4>Experimental</h4>
<p>Experimental repositories are not ready to be used but maybe interesting enough to have a look at it.</p>
<ul>
{{- range.Pages }}
{{ if eq .Params.state "experimental" }}
<li><a href="{{ .RelPermalink }}">{{ .Params.name }}</a> - {{.Description}}</li>
{{ end }}
{{ end -}}
</ul>
<h4>Archived</h4>
<p>Archived repositories will not be improved in the future unless the state will change.</p>
<ul>
{{- range.Pages }}
{{ if eq .Params.state "archived" }}
<li><a href="{{ .RelPermalink }}">{{ .Params.name }}</a> - {{.Description}}</li>
{{ end }}
{{ end -}}
</ul>
<br>
<hr>
<footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer>
</main>
</body>
</html>
|