diff --git a/archetypes/episodes.md b/archetypes/episodes.md index d6b3e5a..4cdf237 100644 --- a/archetypes/episodes.md +++ b/archetypes/episodes.md @@ -1,29 +1,36 @@ --- title: "{{ replace .TranslationBaseName "-" " " | humanize }}" slug: +author: Vicky Zelda date: {{ .Date }} +publishDate: +audio: https://files.lorescape.xyz/XX-XXXX.mp3 +transcript: https://files.lorescape.xyz/XX-XXXX.txt +draft: true keywords: - - - - - - - - -categories: - - + - crypt of the necrodancer + - podcast + - video games +series: + - Crypt of the Necrodancer tags: - - podcast: - mp3: https://files.lorescape.xyz/0X-.mp3 + mp3: https://files.lorescape.xyz/XX-XXXX.mp3 duration: image: - src: - alt: + src: /images/01-necrodancer.png + alt: Logo for Crypt of the Necrodancer episode: season: 1 --- - {{< audio src="https://files.lorescape.xyz/0X-.mp3">}} +[↓ Download episode mp3](https://files.lorescape.xyz/00-intro.mp3) + +## Transcript +[↓ Download transcript](https://files.lorescape.xyz/00-intro.txt) diff --git a/config.yaml b/config.yaml index 52c12fc..8ad751e 100644 --- a/config.yaml +++ b/config.yaml @@ -7,6 +7,11 @@ languageCode: "en-US" author: name: "Vicky Zelda" +taxonomies: + category: categories + series: series + tag: tags + params: contact: "info@lorescape.xyz" copyright: "Original content is licensed [CC BY-NC](https://creativecommons.org/licenses/by-nc/4.0/)." @@ -67,16 +72,16 @@ menu: - Name: "Series" Identifier: "series" Weight: -100 - URL: "/categories/" -# - Name: "Crypt of the Necrodancer" -# Identifier: "necrodancer" -# Parent: "series" -# URL: "/categories/crypt-of-the-necrodancer/" -# Weight: 1 + URL: "/series/" + - Name: "Crypt of the Necrodancer" + Identifier: "necrodancer" + Parent: "series" + URL: "/series/crypt-of-the-necrodancer/" + Weight: 1 - Name: "Meta" Identifier: "meta" Parent: "series" - URL: "/categories/meta/" + URL: "/series/meta/" Weight: 2 - Name: "Episodes" Identifier: "episodes" diff --git a/content/episodes/00-intro.md b/content/episodes/00-intro.md index e3f9b13..417f9c3 100644 --- a/content/episodes/00-intro.md +++ b/content/episodes/00-intro.md @@ -2,12 +2,14 @@ title: "Enter the Lorescape" author: Vicky Zelda date: 2020-10-12T19:26:18-04:00 +audio: https://files.lorescape.xyz/00-intro.mp3 +transcript: https://files.lorescape.xyz/00-intro.txt keywords: - podcast - video games - introduction - lore -categories: +series: - Meta tags: - intro @@ -25,7 +27,13 @@ This episode introduces Lorescape, a new podcast that goes into the universe bui -{{< audio src="https://files.lorescape.xyz/00-intro.mp3">}} +{{< audio src="https://files.lorescape.xyz/00-intro.mp3">}} + +[↓ Download episode mp3](https://files.lorescape.xyz/00-intro.mp3) ## Transcript +[↓ Download transcript](https://files.lorescape.xyz/00-intro.txt) +00:00:00 + +Vicky: hello diff --git a/content/episodes/01-necrodancer.md b/content/episodes/01-necrodancer.md index e016c05..275318e 100644 --- a/content/episodes/01-necrodancer.md +++ b/content/episodes/01-necrodancer.md @@ -3,13 +3,15 @@ title: "First Series: Crypt of the Necrodancer" slug: 01-intro-necrodancer author: Vicky Zelda date: 2020-10-12T19:26:22-04:00 -publishDate: 2020-10-20 -draft: true +#publishDate: 2020-10-20 +audio: https://files.lorescape.xyz/01-intro-necrodancer.mp3 +transcript: https://files.lorescape.xyz/01-intro-necrodancer.txt +#draft: true keywords: - crypt of the necrodancer - podcast - video games -categories: +series: - Crypt of the Necrodancer tags: - plot summary @@ -29,3 +31,7 @@ The first series we'll go over is the Crypt of the Necrodancer! {{< audio src="https://files.lorescape.xyz/01-necrodancer.mp3">}} +[↓ Download episode mp3](https://files.lorescape.xyz/01-intro-necrodancer.mp3) + +## Transcript +[↓ Download transcript](https://files.lorescape.xyz/01-intro-necrodancer.txt) diff --git a/layouts/404.html b/layouts/404.html index e69de29..65387aa 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -0,0 +1,7 @@ +{{ define "main"}} +
+
+

Go Home

+
+
+{{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 5d560f6..5770e0a 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -4,8 +4,8 @@ {{ $paginator := .Paginate (.Pages) -}} {{ range $paginator.Pages -}} {{ .Render "summary"}} -{{ end -}} +{{ end -}} {{ partial "pagination.html" . }} {{ end }} diff --git a/layouts/_default/section.html b/layouts/_default/section.html new file mode 100644 index 0000000..114d25a --- /dev/null +++ b/layouts/_default/section.html @@ -0,0 +1,12 @@ +{{ define "main" -}} +
+

{{ .Title }}

+{{ $paginator := .Paginate (.Pages) -}} +{{ range $paginator.Pages -}} +{{ .Render "summary"}} +↓ Download episode mp3   ↓ Download transcript +{{ end -}} +{{ partial "pagination.html" . }} +
+{{ end }} + diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 4c891f7..e5b82ea 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -7,9 +7,11 @@ {{ if .Params.tags }}{{ partial "tags.html" . }}{{ end -}}
+ {{ .Content }} {{ if ne .Lastmod .Date }}{{ partial "dates.html" . }}{{ end -}} +
diff --git a/layouts/_default/summary.html b/layouts/_default/summary.html index 6d58dff..2396e78 100644 --- a/layouts/_default/summary.html +++ b/layouts/_default/summary.html @@ -5,5 +5,6 @@
{{ .Summary }} +
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html new file mode 100644 index 0000000..01c8147 --- /dev/null +++ b/layouts/_default/taxonomy.html @@ -0,0 +1,11 @@ +{{ define "main" -}} +
+

{{ .Title }}

+{{ $paginator := .Paginate (.Pages) -}} +{{ range $paginator.Pages -}} +{{ .Render "summary"}} +↓ Download episode mp3   ↓ Download transcript +{{ end -}} +{{ partial "pagination.html" . }} +
+{{ end }} diff --git a/layouts/micro/list.html b/layouts/micro/list.html index df9e49a..2ced928 100644 --- a/layouts/micro/list.html +++ b/layouts/micro/list.html @@ -6,6 +6,7 @@ {{ $paginator := .Paginate (.Pages) -}} {{ range $paginator.Pages -}} {{ .Render "summary"}} + {{ end -}} {{ partial "pagination.html" . }} diff --git a/static/images/rss.png b/static/images/rss.png new file mode 100644 index 0000000..e3ff7d0 Binary files /dev/null and b/static/images/rss.png differ