<!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: <a href="mailto:{{.Params.email}}">{{.Params.email}}</a></li>
				<li><a href="https://xmpp.org">XMPP</a>: <a href="xmpp:{{.Params.xmpp}}">{{.Params.xmpp}}</a></li>
				<li><a href="https://openpgp.org">OpenPGP</a>: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></li>
			</ul>

			<h3>Articles</h3>
			<p>The following list contains links to my articles. They contain
			documentation about technology I use.</p>
			<ul>
				{{ range.Site.RegularPages }}
				{{ if eq .Section "articles" }}
				<li><a href="{{.Permalink}}">{{.Params.title}}</a> - {{.Params.Subtitle}}</li>
				{{ end }}
				{{ end }}
			</ul>

			<h3>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>

			{{ partial "footer.html" . }}
		</main>

	</body>

</html>