all repos — www @ c06fb6a6f488406172b3ba5d9bc43d6ed8ff8f8e

deserthorns.net content + generator

pages/meta.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
{{ define "head" }}
<link rel="stylesheet" href="{{.StylePath}}">
{{ end }}

{{ define "body" }}
{{ template "header" . }}
<h2>About this site</h2>
<p>
    This site is a place for anything that I want to put online about myself: it's a gallery, a playground, and a journal.
    Being a personal site, this site will always be changing as I do: things may move, go away, or never be finished.
</p>
<h3>Technical Details</h3>
<p>
    This site is built using a <a href="https://git.deserthorns.net/www/blob/master/build/build.go">bespoke static site generator</a> written in Go.
    Generated files are pushed to the server using <code>rsync</code> and are hosted using <a href="https://caddyserver.com/">Caddy</a>.
</p>
<p>
    Pages are written in HTML to maximize simplicity and flexibility.
</p>
<h3>Inspiration</h3>
<p>
    This site was inspired by <a href="https://wiki.xxiivv.com/site/home.html">Devine Lu Linvega's wiki</a>, <a href="https://100r.co/site/home.html">Hundred Rabbits</a>, and <a href="https://webring.xxiivv.com/">the many other personal sites</a> of the Merveilles collective.
</p>

{{ template "child-links" .Children }}

{{ end }}

{{ define "scripts" }}
{{ end }}