Compare commits

...

4 commits

7 changed files with 46 additions and 29 deletions

View file

@ -184,29 +184,25 @@ icon = "fa-solid fa-envelope"
title = "Email"
url = "mailto:jbowdre@omg.lol"
[[powerLinks]]
title = "bunny"
url = "https://bunny.net"
[[slashPages]]
title = "/changelog"
url = "/changelog"
label = "recent changes to the site"
[[powerLinks]]
title = "hugo"
url = "https://gohugo.io"
[[slashPages]]
title = "/colophon"
url = "/colophon"
label = "how this site works"
[[powerLinks]]
title = "neocities"
url = "https://neocities.org/about"
[[slashPages]]
title = "/homelab"
url = "/homelab"
label = "my homelab setup"
[[powerLinks]]
title = "risotto"
url = "https://github.com/joeroe/risotto"
[[powerLinks]]
title = "torchlight"
url = "https://torchlight.dev"
[[powerLinks]]
title = "tinylytics"
url = "https://tinylytics.app/home"
[[slashPages]]
title = "/save"
url = "/save"
label = "referral links"
[[verifyLinks]]
title = "omg.lol"

View file

@ -1,12 +1,15 @@
---
title: "Changelog"
title: "/changelog"
date: "2024-05-26T21:19:08Z"
lastmod: "2024-05-26T21:28:25Z"
lastmod: "2024-05-28T01:02:49Z"
description: "Maybe I should keep a log of all my site-related tinkering?"
featured: false
toc: false
timeless: true
---
**2024-05-27:**
- Replace "powered by" links with slashpages
**2024-05-26:**
- Begin changelog
- Simplify logic for displaying kudos and post reply buttons

View file

@ -1,5 +1,5 @@
---
title: "Colophon"
title: "/colophon"
date: "2024-05-26T22:30:58Z"
# lastmod: 2024-05-24
description: "There's a lot that goes into this site. Let me tell you how it works."

View file

@ -1,9 +1,8 @@
---
title: "My Playground"
title: "/homelab"
date: "2024-05-26T21:30:51Z"
# lastmod: 2024-05-24
aliases:
- homelab
- playground
description: "I enjoy tinkering with small technology projects, and I learn a ton from these experiments. I also self-host a number of apps/services from my home as well as various cloud environments. This page describes some of my playground."
featured: false

19
content/save.md Normal file
View file

@ -0,0 +1,19 @@
---
title: "/save"
date: "2024-05-28T00:25:51Z"
# lastmod: 2024-05-24
description: "Referral links for services I use and heartily recommend."
featured: false
toc: true
timeless: true
---
### I use and recommend:
- **[Bunny.net](https://bunny.net?ref=0eh23p45xs)** DNS and CDN service that really hops
- **[Cloaked](https://join.cloaked.app/?utm_source=referral&utm_campaign=Ee83SGN8OR)** Protect your personal information by generating unique identities
- **[Fastmail](https://app.fastmail.com/signup/?STKI=/u29803368)** Fast, private email
- **[NextDNS](https://nextdns.io/?from=2jujzdcc)** Cloud-based DNS filtering
- **[omg.lol](https://home.omg.lol/referred-by/jbowdre)** The best web address you'll ever have
- **[Privacy.com](https://app.privacy.com/join/JMMQ7)** Unique merchant-locked cards for every online purchase
- **[Vultr](https://www.vultr.com/?ref=9488431)** Cost-effective cloud infrastructure

View file

@ -1,5 +1,5 @@
<p class="copyright">{{ .Site.Copyright | markdownify }}</p>
<p class="powered_by">{"powered_by": [{{- range $i, $link := .Site.Params.powerLinks }}{{ if $i }}, {{ end }}&quot;<a target="_blank" href="{{ $link.url }}">{{ $link.title }}</a>&quot;{{ end }}]}
<p class="footer_links">{"<a href="https://slashpages.net/" title="what's a slashpage?" target="_blank">slashpages</a>": [{{- range $i, $link := .Site.Params.slashPages }}{{ if $i }}, {{ end }}&quot;<a href="{{ $link.url }}" title="{{ $link.label }}">{{ $link.title }}</a>&quot;{{ end }}]}
<br>&lt;<a target="_blank" href="https://github.com/jbowdre/runtimeterror">view source</a>&gt;</p>
<!-- Back to Top button via https://github.com/vfeskov/vanilla-back-to-top -->

View file

@ -35,18 +35,18 @@
line-height: 1.3rem;
}
.powered_by {
.footer_links {
font-size: 12px;
line-height: 1.1rem;
color: var(--muted);
}
.powered_by a:link, .powered_by a:visited {
.footer_links a:link, .footer_links a:visited {
color: var(--off-fg);
text-decoration: none;
}
.powered_by a:hover {
.footer_links a:hover {
color: var(--hover);
text-decoration: underline;
}