add digital garden section
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
c27f2e058a
commit
5f814127bf
|
@ -13,4 +13,4 @@ pipeline:
|
||||||
secrets:
|
secrets:
|
||||||
- 'api_key'
|
- 'api_key'
|
||||||
commands:
|
commands:
|
||||||
- 'curl -XPOST --fail -s -H "Authorization: Bearer $API_KEY" -T public.tar.gz https://rustybever.be/api/deploy'
|
- 'curl -XPOST --fail -s -H "Authorization: Bearer $API_KEY" -T public.tar.gz https://rustybever.be/_root'
|
||||||
|
|
13
config.toml
13
config.toml
|
@ -6,9 +6,13 @@ enableInlineShortcodes = true
|
||||||
pygmentsCodeFences = true
|
pygmentsCodeFences = true
|
||||||
pygmentsUseClasses = true
|
pygmentsUseClasses = true
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
project = "projects"
|
||||||
|
tag = "tags"
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
description = "The Rusty Bever"
|
description = "The Rusty Bever"
|
||||||
copyright = "Copyright © 2024 Jef Roosens"
|
copyright = "Copyright © 2025 Jef Roosens"
|
||||||
dark = "auto"
|
dark = "auto"
|
||||||
highlight = true
|
highlight = true
|
||||||
|
|
||||||
|
@ -27,6 +31,13 @@ pygmentsUseClasses = true
|
||||||
url = "/dev/"
|
url = "/dev/"
|
||||||
weight = 10
|
weight = 10
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "garden"
|
||||||
|
name = "garden"
|
||||||
|
title = "garden"
|
||||||
|
url = "/garden/"
|
||||||
|
weight = 20
|
||||||
|
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
identifier = "about"
|
identifier = "about"
|
||||||
name = "about"
|
name = "about"
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Automating Minecraft Server Backups"
|
title: "Automating Minecraft Server Backups"
|
||||||
date: 2023-09-07
|
date: 2023-09-07
|
||||||
|
tags: [minecraft, rust, backups]
|
||||||
---
|
---
|
||||||
|
|
||||||
I started playing Minecraft back in 2012, after the release of version 1.2.5.
|
I started playing Minecraft back in 2012, after the release of version 1.2.5.
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "Digital Garden"
|
||||||
|
---
|
||||||
|
|
||||||
|
This section is meant to be a digital garden of sorts where I can write down
|
||||||
|
thoughts without the pressure of a full-on blug post.
|
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
title: "Digital Garden"
|
||||||
|
date: 2025-01-02T20:54:30+01:00
|
||||||
|
---
|
||||||
|
|
||||||
|
We're trying something new for 2025. I've been wanting to write more, but most
|
||||||
|
of the ideas I had weren't "good enough" (according to me) or I got stuck
|
||||||
|
trying to perfect whatever it was I wanted to write about. This caused me to
|
||||||
|
never write anything past June.
|
||||||
|
|
||||||
|
I want to change that by setting up a digital garden of sorts. The idea is to
|
||||||
|
add a zero-pressure section to my site where I can write less polished and
|
||||||
|
shorter articles about anything. I like writing on this site, but I've gotten
|
||||||
|
stuck in trying to perfect everything, so I'm hoping this section can remedy
|
||||||
|
that.
|
||||||
|
|
||||||
|
Hopefully this is one of many articles to come!
|
|
@ -1,5 +1,5 @@
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .RelPermalink }}">
|
||||||
{{ .Title }}
|
{{ .Title }}
|
||||||
<small><time>{{ .Date | time.Format (i18n "posts.date") }}</time></small>
|
<small><time>{{ .Date | time.Format (i18n "posts.date") }}</time></small>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
{{ .Content }}
|
||||||
|
<h3>{{ i18n "posts.title" }}</h3>
|
||||||
|
<ul id="posts">
|
||||||
|
{{- range .Pages }}
|
||||||
|
{{ .Render "li" }}
|
||||||
|
{{- end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
Loading…
Reference in New Issue