mindjack/layouts/index.html

30 lines
662 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>
<h2><a href="follow/">follow</a></h2>
<h2><a href="colors/">colors</a></h2>
<h2><a href="loading/">loading</a></h2>
<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 }}