diff --git a/assets/data/people.json b/assets/data/people.json new file mode 100644 index 0000000..658bf53 --- /dev/null +++ b/assets/data/people.json @@ -0,0 +1,6 @@ +[ + { + "Name": "Benjamin Hollon", + "Website": "benjaminhollon.com" + } +] diff --git a/content/people.md b/content/people.md new file mode 100644 index 0000000..53e39af --- /dev/null +++ b/content/people.md @@ -0,0 +1,44 @@ +--- +title: "A List of People" +date: 2024-05-22T20:21:36-05:00 +draft: false +tags: + - info +--- +This is a list of people that I have collected over time: +1) Benjamin Hollon for his work on [readable.css](https://readable-css.freedomtowrite.org/) and his support on the fediverse. + * [Website](https://benjaminhollon.com/) + * Fediverse + * [@amin@alpha.polymaths.social](https://alpha.polymaths.social/@amin) + * [Codeberg](https://codeberg.org/benjaminhollon) + * [Github](https://github.com/benjaminbhollon) (Dead) + * [Other](https://benjaminhollon.com/social/) + * [Contact](https://benjaminhollon.com/contact/) +2) CJ for his work on [hugo-theme-readable](https://github.com/cjtheham/hugo-theme-readable/tree/main/layouts) + * [Website](https://ww0cj.radio/) + * Fediverse + * [@roguefoam@alpha.polymaths.social](https://alpha.polymaths.social/@roguefoam) +3) Sire for making me laugh + * Fediverse + * [@sire@alpha.polymaths.social](https://alpha.polymaths.social/@sire) +4) Tyil for teaching me a few things + * [Website](https://www.tyil.nl) + * [Fediverse](https://fedi.tyil.nl/@tyil) +5) R.L Dane for being around + * [Blog](https://rldane.space/) + * Fediverse + * [@RL_Dane@fosstodon.org](https://fosstodon.org/@RL_Dane) +8) Orbital Martian for being around + * [Blog](https://orbitalmartian.codeberg.page/) + * Fediverse + * [@orbitalmartian@alpha.polymaths.social](https://alpha.polymaths.social/@orbitalmartian) +9) Sotolf for being around + * Fediverse + * [@sotolf@alpha.polymaths.social](https://alpha.polymaths.social/@sotolf) + * [@sotolf@social.linux.pizza](https://social.linux.pizza/@sotolf) +10) Ivan for being around + * [Website](https://vmst.io/@libreivan) + * Fediverse + * [@libreivan@vmst.io](https://vmst.io/@libreivan) + * [@ivan@alpha.polymaths.social](https://alpha.polymaths.social/@ivan) +11) Krafter diff --git a/content/test.md b/content/test.md new file mode 100644 index 0000000..1ca8421 --- /dev/null +++ b/content/test.md @@ -0,0 +1,8 @@ +--- +title: "A List of People" +date: 2024-05-22T20:21:36-05:00 +draft: false +tags: + - info +--- +{{}} diff --git a/layouts/shortcodes/peoplelist.html b/layouts/shortcodes/peoplelist.html new file mode 100644 index 0000000..b41486d --- /dev/null +++ b/layouts/shortcodes/peoplelist.html @@ -0,0 +1,16 @@ +{{ $data := dict }} +{{ $path := "data/people.json" }} +{{ with resources.Get $path }} + {{ with . | transform.Unmarshal }} + {{ $data = . }} + {{ end }} +{{ else }} + {{ errorf "Unable to get global resource %q" $path }} +{{ end }} + +{{ range $data }} + {{ .Name }} +