chore: updated paginator to show more than 10 items
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Solomon Laing 2026-01-03 14:53:46 +10:30
parent b00218832d
commit c51773bc46
18 changed files with 132 additions and 1 deletions

View File

@ -0,0 +1,8 @@
---
title: "authelia"
link: "https://www.authelia.com/"
---
Authelia is my auth provider for services that I want just a little extra
protection on, it integrates well with Caddy (my web server) and prevents access
completely if authentication fails.

10
content/services/caddy.md Normal file
View File

@ -0,0 +1,10 @@
---
title: "caddy"
link: "https://caddyserver.com/"
---
My webserver. Caddy is amazing, as someone who had been (until early 2026)
nursing an ancient Apache2 isntance as a webserver and reverse proxy, Caddy
feels like magic to me. The ease with which you can set up revers proxies and
TLS is unreal. I also very much like having tls on my internal sites as well,
which Caddy supports out of the box.

View File

@ -0,0 +1,8 @@
---
title: "droneci"
link: "https://drone.inkletblot.com"
---
In my migration from GitLab to Gitea I was looking for a CI/CD integration and
came across drone. It works like a charm for my use case, albeit less fully
featured that GitLab CI, that was sort of the point.

View File

@ -0,0 +1,6 @@
---
title: "firefly iii"
link: "https://www.firefly-iii.org/"
---
Self hosted budget management. Simple as that.

10
content/services/gitea.md Normal file
View File

@ -0,0 +1,10 @@
---
title: "gitea"
link: "https://git.inkletblot.com/"
---
Microsoft purchased Github and I migrated to GitLab, which I happily used for
some years. However, in migrating my homelab to a more supportable containerised
setup, I realised that I didn't need the full enterprise featureset that GitLab
provides, so I migrated to something a little lighter, Gitea. I couldn't be
happier.

View File

@ -0,0 +1,11 @@
---
title: "immich"
link: "https://immich.inkletblot.com"
---
For some time I'd been using my nextcloud instance to backup the photos on my
phone. But I was often frustrated by how bloated and messy everything seemed
with my random screenshots and photos of food so I decided to move the backup
feature out of nextcloud and into something else, that something else was
Immich. My setup is much cleaner now with a clearer separation of concerns
across my hosted services.

View File

@ -0,0 +1,8 @@
---
title: "mealie"
link: "https://mealie.inkletblot.com"
---
Thought this looked cool, wanna try it out :D
It's a recipe/shopping-list/meal planning tool.

View File

@ -0,0 +1,7 @@
---
title: "memos"
link: "https://memos.inkletblot.com"
---
A very user friendly place to record your thoughts, trying it out for a while.
We'll see if it lasts.

View File

@ -0,0 +1,6 @@
---
title: "monica"
link: "https://www.monicahq.com/"
---
CRM Your Friends.

View File

@ -0,0 +1,7 @@
---
title: "openhab"
link: "https://hab.inkletblot.com"
---
Home automation, while stupid, dangerous, and a waste of time, is convenient
from time to time.

View File

@ -0,0 +1,7 @@
---
title: "planka"
link: "https://planka.inkletblot.com"
---
Basically open source Trello, good for life admin, planning, projects, etc.

6
content/services/plex.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "plex"
link: "https://app.plex.tv"
---
You know what it is.

View File

@ -0,0 +1,7 @@
---
title: "roundcube"
link: "https://mail.inkletblot.com"
---
Mail client for my domain (inkletblot.com).

View File

@ -0,0 +1,7 @@
---
title: "servarr"
link: "https://wiki.servarr.com/"
---
;)

View File

@ -0,0 +1,9 @@
---
title: "trilium"
link: "https://notes.inkletblot.com"
---
A very rich note taking/knowledge management environment. I haven't explored it
much yet but it looks like the sort of thing that benefits from dedicated long
term use. I guess I'll find out?

View File

@ -0,0 +1,6 @@
---
title: "Unifi Network Application"
link: "https://www.ui.com/download/unifi"
---
You know what it is.

View File

@ -0,0 +1,8 @@
---
title: "vaultwarden"
link: "https://bw.inkletblot.com"
---
I host my own instance of vaultwarden on my homelab which I and my girlfriend
use, I had nothing against the free teir of bitwarden it just seemed like fun
to set up.

View File

@ -7,7 +7,7 @@
{{ end }} {{ end }} {{ end }} {{ end }}
<div class="services__list"> <div class="services__list">
{{ range .Paginator.Pages }} {{ .Render "summary" }} {{ end }} {{ range (.Paginator 1000).Pages }} {{ .Render "summary" }} {{ end }}
</div> </div>
</main> </main>
{{ end }} {{ end }}