You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
860 B

<nav>
I write software for a living and sometimes for fun.
{{ range .Site.Menus }}
<ul class="nav">
{{ range . }}
<li>
{{ if ne .Title "" }}
<span class="title">{{ .Title }}</span><br/>
{{ end }}
<a {{ if or (strings.HasSuffix .Name "github") (strings.HasSuffix .Name "keybase") }} rel="me" {{ end }}href="{{ .URL }}">
<span>{{ .Name }}</span>
</a>
</li>
{{ end }}
</ul>
{{ end }}
<p id="license">
<span class="title">License</span><br/>
<p>
Content on this site is <a href="https://creativecommons.org/licenses/by/3.0/">CC-BY-SA</a>.<br/>
Code for this site is <a href="https://opensource.org/licenses/MIT">MIT</a>.
</p>
</p>
</nav>