diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-29 21:32:41 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-29 21:34:55 +0100 |
commit | 7943865cc66b80eb54e06ec304bccef0d3a44151 (patch) | |
tree | b0dcfc2104c1f2c689d01ada7115677315f0ba47 /src/http/tpl/index.html | |
parent | 1f3ae665ed2e58ca572678ce7caf8b711f226392 (diff) |
Move mediocregopher.com content to index of this site
Diffstat (limited to 'src/http/tpl/index.html')
-rw-r--r-- | src/http/tpl/index.html | 59 |
1 files changed, 38 insertions, 21 deletions
diff --git a/src/http/tpl/index.html b/src/http/tpl/index.html index 9b03531..51805b1 100644 --- a/src/http/tpl/index.html +++ b/src/http/tpl/index.html @@ -1,34 +1,51 @@ {{ define "body" }} - {{ if ge .Payload.PrevPage 0 }} <p> - <a href="?p={{ .Payload.PrevPage}}">< < Previous Page</a> + Hi! I'm Brian, and this here's my little corner of the web. Here I write + <a href="{{ BlogURL "posts" }}">posts</a> + about projects I'm working on and things that interest me (which you can + <a href="{{ BlogURL "follow" }}">follow</a>, + if you like). Beyond that I've linked to various related links related to me + below. </p> - {{ else }} - <p> - Welcome to the Mediocre Blog! Posts are listed in chronological order. If - you aren't sure of where to start I recommend picking at random. - </p> - {{ end }} + <h2>Social</h2> + <ul> + <li><a href="https://matrix.to/#/@mediocregopher:waffle.farm">@mediocregopher:waffle.farm</a> is my matrix handle.</li> + <li><a href="https://social.cryptic.io/@mediocregopher">@mediocregopher@social.cryptic.io</a> is my mastodon handle.</li> + <li><a href="https://bgpicciano.com">bgpicciano.com</a> is my cover site/resume.</li> + <li><a href="mailto:mediocregopher@gmail.com">mediocregopher@gmail.com</a> is my email.</li> + <li><a href="https://news.cryptic.io">Cryptic News</a> aggregates interesting blogs.</li> + </ul> + + <h2>Dev</h2> <ul> - {{ range .Payload.Posts }} <li> - <strong><a href="{{ PostURL .ID }}"> - {{ DateTimeFormat .PublishedAt }} / {{ .Title }} - </a></strong> - {{ if .Description }} - <br/><em>{{ .Description }}</em> - {{ end }} + <a href="https://code.betamike.com/mediocregopher">Gitea</a> + and + <a href="https://github.com/mediocregopher">GitHub</a> + are for open-source code I've written. </li> - {{ end }} + <li><a href="https://github.com/mediocregopher/radix">radix</a> is for using redis with go.</li> + <li><a href="https://code.betamike.com/cryptic-io/cryptic-net">cryptic-net</a> implements the foundation of a community infrastucture.</li> + <li><a href="https://code.betamike.com/mediocregopher/mediocre-blog">mediocre-blog</a> is the CMS I designed from scratch to run this site.</li> </ul> - {{ if ge .Payload.NextPage 0 }} - <p> - <a href="?p={{ .Payload.NextPage}}">Next Page > ></a> - </p> - {{ end }} + <h2>Art</h2> + <ul> + <li><a href="https://opensea.io/mediocregopher?tab=created">OpenSea</a> lists some NFTs I've made.</li> + <li><a href="https://exchange.art/artists/mediocregopher/series">Exchange.art</a> lists others.</li> + </ul> + + <hr/> + + <p>I'm not affiliated with these, but they're worth listing.</p> + <ul> + <li><a href="https://search.marginalia.nu/">Marginalia</a> reminds me of the old internet.</li> + <li><a href="https://drewdevault.com/2020/11/01/What-is-Gemini-anyway.html">Gemini</a> is a protocol I soon hope to add to my blog.</li> + <li><a href="https://www.nts.live/">NTS</a> is a great internet radio station.</li> + <li><a href="https://yamakan.place/palestine/#">Radio alHara</a> is another great internet radio station.</li> + </ul> {{ end }} |