30 lines
645 B
HTML
30 lines
645 B
HTML
{{ define "styles" }}
|
|
<style>
|
|
#footer {
|
|
margin-top: 3rem;
|
|
}
|
|
#footer svg {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
#footer h4 {
|
|
margin: 2px;
|
|
}
|
|
</style>
|
|
{{ end }}
|
|
{{ define "main" }}
|
|
<div id="header">
|
|
<h1>mindjack</h1>
|
|
</div>
|
|
|
|
{{ range .Site.RegularPages }}
|
|
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
|
|
{{ end }}
|
|
|
|
<div id="footer">
|
|
<h4>a project by <a href="https://xeno.science">xenofem</a></h4>
|
|
<h4><a href="https://xeno.science">{{ partial "xeno.svg" . }}</a></h4>
|
|
<h4><a href="https://git.xeno.science/xenofem/mindjack">source</a></h4>
|
|
</div>
|
|
{{ end }}
|