1
Fork 0
This commit is contained in:
MMaker 2025-12-02 23:49:51 -05:00
commit cf7a27bfa1
Signed by: mmaker
GPG key ID: CCE79B8FEDA40FB2
225 changed files with 3580 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{{- $data := slice }}
{{- with os.ReadFile "data/things.json" }}
{{- $data = . | transform.Unmarshal }}
{{- end }}
{{- range $data }}
{{- $params := dict
"link" .link
"thumb" .thumb
"type" .type
"title" .title
}}
{{- $dates := dict "date" (time .date) }}
{{- $page := dict
"kind" "page"
"path" (printf "%s/%s" .type .id)
"title" .title
"dates" $dates
"params" $params
}}
{{- $.AddPage $page }}
{{- end }}

10
content/things/_index.md Normal file
View file

@ -0,0 +1,10 @@
---
layout: things-list
title: "Things I Like"
draft: false
outputs:
- html
- rss
---
This is a general list of anything I like! I started this list in December 2023, but had backlogged some entries to get started. This list also has an [RSS feed](/things/index.xml) if that is of interest.

View file

@ -0,0 +1,5 @@
---
layout: things-list
title: "Things I Like - Articles"
draft: false
---

View file

@ -0,0 +1,5 @@
---
layout: things-list
title: "Things I Like - Games"
draft: false
---

View file

@ -0,0 +1,5 @@
---
layout: things-list
title: "Things I Like - Videos"
draft: false
---

View file

@ -0,0 +1,5 @@
---
layout: things-list
title: "Things I Like - Websites"
draft: false
---