summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclaw0ry <me@claw0ry.net>2025-01-24 08:48:46 +0100
committerclaw0ry <me@claw0ry.net>2025-01-24 08:48:46 +0100
commit0c934b248a7dc45e2d09a55818b85c72943cc986 (patch)
treefb2048b93be74b0307d5431ae57f28d019f450c7
parenttheme: new favicon (diff)
collections: new page
-rw-r--r--content/collections.md7
-rw-r--r--content/collections/cd-albums.md63
-rw-r--r--content/wishlist.md17
-rw-r--r--themes/plaintext/layouts/_default/list.html1
-rw-r--r--themes/plaintext/layouts/collections/single.html24
-rw-r--r--themes/plaintext/layouts/partials/header.html1
6 files changed, 96 insertions, 17 deletions
diff --git a/content/collections.md b/content/collections.md
new file mode 100644
index 0000000..a21c428
--- /dev/null
+++ b/content/collections.md
@@ -0,0 +1,7 @@
+---
+title: My Collections
+---
+
+Over the past year I’ve become painfully aware that most of today’s internet is only for rent (which is one of the reasons I created my own website). Therefor, I have decided to start collecting physical media again so that the things I care about and are important can't be taken away from me.
+
+- [CD Albums](/collections/cd-albums)
diff --git a/content/collections/cd-albums.md b/content/collections/cd-albums.md
new file mode 100644
index 0000000..a6d4cb1
--- /dev/null
+++ b/content/collections/cd-albums.md
@@ -0,0 +1,63 @@
+
+---
+title: 'My CD Collection'
+---
+
+Music has been very important for me since I was a kid. I grew up with a dad that was a musician and music was always a part of everyday life.
+
+I have been using Spotify for most of my listening since it's early beta days, and bought a premium subscription as soon as it was available. Occasionally trying Apple Music for that sweet Hi-Res quality.
+
+But, there is something very satisfying putting on a physical CD album and just listen through it instead of "doomscrolling" an skipping through songs on streaming platforms. I will probably still use Spotify to discover new music until I find another source.
+
+I start by securing the music that has meant the most to me throughout my life and then go from there.
+
+## Collection
+
+- Avril Lavigne - Greatest Hits (2024)
+- Blink-182 - Greatest Hits
+- HIM - Venus Doom (Deluxe Version)
+- HIM - Love Metal
+- Jan Dahlen - Kæm e du
+- Jan Dahlen - Drømmer og virkelighet
+- My Chemical Romance - The Black Parade
+
+## Wishlish
+
+- Ace of Base - The Sign
+- My Chemical Romance - Three Cheers For Sweet Revenge
+- Linkin Park - Hybrid Theory
+- Linkin Park - Meteora
+- Green Day - The Studio Albums 1990-2009
+- Blink-182 - Take Off Your Pants And Jacket
+- Falling in Reverse - Popular Monster
+- Escape the Fate - Dying Is Your Latest Fashion
+- Simple Plan - No Pads, No Helmets...Just Balls
+- Avicii - True
+- HIM - Dark Light
+- HIM - Razorblade Romance
+- HIM - And Love Said No...
+- HIM - Greatest Love Songs Vol. 666
+- Eminem - The Slim Shady LP
+- Eminem - The Eminem Show
+- Eminem - Encore
+- Eminem - The Eminem Show
+- The Killers - Hot Fuss
+- The Killers - Sam's Town
+- The Killers - Day & Age
+- P!nk - Greatest Hits...So Far!!!
+- Nickelback - Silver Side Up
+- Nickelback - The Long Road
+- Nickelback - All the Right Reasons
+- Nickelback - Dark Horse
+- Nickelback - Live From Nashville
+- Alice Deejay - Who Needs Guitars Anyway?
+- ATB - Movin' Melodies
+- ATB - No Silence
+- Vassendgutane - Festi Ekje Slutt...Beste HITtil! + Fire Nye!
+- Nirvana - Nevermind
+- Röyksopp - Melody A.M.
+- Röyksopp - The Understanding
+- Röyksopp - The Inevitable End
+- Savage Garden - Savage Garden
+- Backstreet Boys - The Hits--Chapter One
+
diff --git a/content/wishlist.md b/content/wishlist.md
deleted file mode 100644
index 7549ec5..0000000
--- a/content/wishlist.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-title: 'Wishlist'
----
-
-## CD Albums
-
-- Ace of Base - The Sign
-- My Chemical Romance - Three Cheers For Sweet Revenge
-- Linkin Park - Hybrid Theory
-- Linkin Park - Meteora
-- Green Day - The Studio Albums 1990-2009
-- Blink-182 - Take Off Your Pants And Jacket
-- Falling in Reverse - Popular Monster
-- Escape the Fate - Dying Is Your Latest Fashion
-- Simple Plan - No Pads, No Helmets...Just Balls
-
-
diff --git a/themes/plaintext/layouts/_default/list.html b/themes/plaintext/layouts/_default/list.html
index 50fc92d..c006d7e 100644
--- a/themes/plaintext/layouts/_default/list.html
+++ b/themes/plaintext/layouts/_default/list.html
@@ -1,6 +1,7 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
+
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
diff --git a/themes/plaintext/layouts/collections/single.html b/themes/plaintext/layouts/collections/single.html
new file mode 100644
index 0000000..1833f68
--- /dev/null
+++ b/themes/plaintext/layouts/collections/single.html
@@ -0,0 +1,24 @@
+{{ define "main" }}
+
+<article class="article">
+ <h1 class="article--heading">* {{ .Title }}</h1>
+
+ {{ if .Params.toc }}
+ <div class="article--toc">
+ <h2>Table of Contents</h2>
+ {{ .TableOfContents }}
+ </div>
+
+ <hr />
+ {{ end }}
+
+ <div class="article--body">{{ .Content }}</div>
+</article>
+
+<hr />
+
+{{ with .GitInfo }}
+<p class="last-modified"><i>This page was last modified {{ .CommitDate.Format "15:04:05 02-01-2006"}}</i></p>
+{{ end }}
+
+{{ end }}
diff --git a/themes/plaintext/layouts/partials/header.html b/themes/plaintext/layouts/partials/header.html
index b96bd36..e8f397e 100644
--- a/themes/plaintext/layouts/partials/header.html
+++ b/themes/plaintext/layouts/partials/header.html
@@ -2,6 +2,7 @@
<p>
[<a href="/">blog</a>]
[<a href="http://github.com/moiaune">projects</a>]
+ [<a href="{{.Site.BaseURL}}collections">collections</a>]
[<a href="http://ipv4.claw0ry.net">ipv4</a>]
[<a href="http://ipv6.claw0ry.net">ipv6</a>]
[<a href="{{.Site.BaseURL}}index.xml">rss</a>]