summaryrefslogtreecommitdiff
path: root/themes/bare/layouts/index.html
blob: 9539278f654409714d9f4fc7a3ec9a24ccfa1132 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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="{{ "style.css" | absURL }}" type="text/css">

	</head>
	
	<body>

		<header>
			<h1>{{.Params.heading}}</h1>
			<p>Free and Open Source software and hardware projects</p>
		</header>

		<main>
			<h3>Contact</h3>
			<ul>
				<li>Mail: {{.Params.email}}</li>
				<li>XMPP: {{.Params.xmpp}}</li>
				<li>OpenPGP: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></li>
			</ul>

			{{.Content}}

			<h3>My projects</h3>
			<p>Here is a list of all my published projects. The active ones are
			regularly used by myself.</p>

			<strong>Experimental</strong>
			<ul>
				{{ range.Site.RegularPages }}
				{{ if eq .Section "git" }}
				{{ if eq .Params.state "experimental" }}
				<li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li>
				{{ end }}
				{{ end }}
				{{ end }}
			</ul>

			<strong>Active</strong>
			<ul>
				{{ range.Site.RegularPages }}
				{{ if eq .Section "git" }}
				{{ if eq .Params.state "active" }}
				<li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li>
				{{ end }}
				{{ end }}
				{{ end }}
			</ul>

			<strong>Archived</strong>
			<ul>
				{{ range.Site.RegularPages }}
				{{ if eq .Section "git" }}
				{{ if eq .Params.state "archived" }}
				<li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li>
				{{ end }}
				{{ end }}
				{{ end }}
			</ul>

			<footer>
				<hr>
				<p>This <a href="{{ "git/website" | absURL }}">website</a> is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p>
			</footer>
		</main>

	</body>

</html>