diff --git a/content/assets/bufferlists.png b/content/assets/bufferlists.png new file mode 100644 index 0000000..c1ef91f Binary files /dev/null and b/content/assets/bufferlists.png differ diff --git a/content/music/queenspath/index.md b/content/music/queenspath/index.md new file mode 100644 index 0000000..c055a79 --- /dev/null +++ b/content/music/queenspath/index.md @@ -0,0 +1,18 @@ +--- +title: "Queen's Path" +subtitle: "Mashup of \"Queen's Gardens\" and \"Greenpath\"" +artist: "Christopher Larkin" +musescore: https://musescore.com/user/40262822/scores/20124100 +date: "2024-08-13" +parts: +- "Mixed Ensemble" +--- + +Orchestration of Stoh's Queen's Path (mashup of Christopher Larkin's "Greenpath" and "Queen's Gardens") + +- [Score (.mscz)](./queens-path.mscz) +- [Score (.pdf)](./queens-path.pdf) + +Video score: + +{{}} diff --git a/content/music/queenspath/queens-path.mscz b/content/music/queenspath/queens-path.mscz new file mode 100644 index 0000000..ce88ef6 Binary files /dev/null and b/content/music/queenspath/queens-path.mscz differ diff --git a/content/music/queenspath/queens-path.pdf b/content/music/queenspath/queens-path.pdf new file mode 100644 index 0000000..f786276 Binary files /dev/null and b/content/music/queenspath/queens-path.pdf differ diff --git a/content/music/rocket-jump-waltz/index.md b/content/music/rocket-jump-waltz/index.md new file mode 100644 index 0000000..d5839bb --- /dev/null +++ b/content/music/rocket-jump-waltz/index.md @@ -0,0 +1,12 @@ +--- +title: "Rocket Jump Waltz but it's actually a waltz" +subtitle: "From \"Team Fortress 2\"" +artist: "Mike Morasky" +musescore: https://musescore.com/user/40262822/scores/23236621 +date: "2025-01-31" +parts: +- "Mixed Ensemble" +--- + +- [Score (.mscz)](./rocket-jump-waltz-meter-orch.mscz) +- [Score (.pdf)](./rocket-jump-waltz-meter-orch.pdf) diff --git a/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.mscz b/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.mscz new file mode 100644 index 0000000..a750c31 Binary files /dev/null and b/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.mscz differ diff --git a/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.pdf b/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.pdf new file mode 100644 index 0000000..b1017c4 Binary files /dev/null and b/content/music/rocket-jump-waltz/rocket-jump-waltz-meter-orch.pdf differ diff --git a/content/posts/batch-download-music.org b/content/posts/batch-download-music.org index c260afc..1af543b 100644 --- a/content/posts/batch-download-music.org +++ b/content/posts/batch-download-music.org @@ -8,7 +8,7 @@ * Deemix -[[https://gitlab.com/Bockiii/deemix-docker][Docker container]] +[[https://gitlab.com/Bockiii/deemix-docker][Docker image]] I have no association with this software (educational purposes only). diff --git a/content/posts/comments.md b/content/posts/comments.md index 70ac37e..0387d5d 100644 --- a/content/posts/comments.md +++ b/content/posts/comments.md @@ -14,3 +14,5 @@ her which cables go where. It will be back probably Friday when I finally get there to plug it back in, shirley ![](https://cdn.betterttv.net/emote/60419081306b602acc5972c9/1x.webp) + +10.07.2023 comments are now back diff --git a/layouts/partials/post-info.html b/layouts/partials/post-info.html index b6711a5..cd01d52 100644 --- a/layouts/partials/post-info.html +++ b/layouts/partials/post-info.html @@ -21,6 +21,14 @@ This post is part of a larger series: + {{ chapter := .Params.chapter }} + {{ if chapter }} + + {{ chapter }} + + — + {{ end }} + {{ . }} diff --git a/static/admin/config.yml b/static/admin/config.yml index 6794d07..cf1f1e2 100644 --- a/static/admin/config.yml +++ b/static/admin/config.yml @@ -3,6 +3,11 @@ media_folder: "static/images/uploads" # The src attribute for uploaded media will begin with /images/uploads public_folder: "/images/uploads" +slug: + encoding: "ascii" + clean_accents: true + sanitize_replacement: "-" + backend: name: github repo: HumanoidSandvichDispenser/sandvich.xyz @@ -30,3 +35,63 @@ collections: - label: "Tags" name: "tags" widget: "list" + + - name: music + label: Music + folder: "content/music" + create: true + slug: "{{ year }}-{{ month }}-{{ day }}-{{ slug }}" + fields: + - label: "Title" + name: "title" + widget: "string" + + - label: "Artist" + name: "artist" + widget: "string" + + - label: "MuseScore" + name: "musescore" + widget: "string" + + - label: "Publish Date" + name: "date" + widget: "datetime" + + - label: "Body" + name: "body" + widget: "markdown" + + - label: "Parts" + name: "parts" + widget: "list" + + - name: page + label: Page + folder: "content/books" + create: true + slug: "{{ series }}/{{ chapter }}/{{ slug }}" + fields: + - label: "Title" + name: "title" + widget: "string" + + - label: "Series" + name: "series" + widget: "string" + + - label: "Chapter" + name: "chapter" + widget: "string" + + - label: "Publish Date" + name: "date" + widget: "datetime" + + - label: "Body" + name: "body" + widget: "markdown" + + - label: "Tags" + name: "tags" + widget: "list"