mindjack/layouts/index.html

30 lines
645 B
HTML
Raw Normal View History

2020-05-29 16:58:33 -04:00
{{ 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>
2020-05-29 17:46:47 -04:00
{{ range .Site.RegularPages }}
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ end }}
2020-05-29 16:58:33 -04:00
<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 }}