<!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> <h1>{{.Params.heading}}</h1> <div class="card"> <h3 class="card-first-item">Contact</h3> <p>Mail: {{.Params.email}}</p> <p>XMPP: {{.Params.xmpp}}</p> <p class="card-last-item">OpenPGP: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></p> </div> {{.Content}} <h2>Active Git repositories</h2> <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> <p>To also see the archived and experimental repositories have a look at the <a href="/git">list of all Git repositories</a>.</p> <br> <hr> <footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer> </main> </body> </html>