Add new content
parent
9f24e25330
commit
b7d6cff75d
content
assets
music
layouts/partials
static/admin
Binary file not shown.
After Width: | Height: | Size: 202 KiB |
|
@ -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:
|
||||||
|
|
||||||
|
{{<youtube UUIGa6_ITDU>}}
|
Binary file not shown.
Binary file not shown.
|
@ -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)
|
Binary file not shown.
Binary file not shown.
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
* Deemix
|
* 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).
|
I have no association with this software (educational purposes only).
|
||||||
|
|
||||||
|
|
|
@ -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,
|
It will be back probably Friday when I finally get there to plug it back in,
|
||||||
shirley 
|
shirley 
|
||||||
|
|
||||||
|
10.07.2023 comments are now back
|
||||||
|
|
|
@ -21,6 +21,14 @@
|
||||||
<td><i class="bi bi-collection"></i></td>
|
<td><i class="bi bi-collection"></i></td>
|
||||||
<td>
|
<td>
|
||||||
This post is part of a larger series:
|
This post is part of a larger series:
|
||||||
|
{{ chapter := .Params.chapter }}
|
||||||
|
{{ if chapter }}
|
||||||
|
<a class="tag" href="/series/{{ . | urlize }}/chapter/{{ chapter }}">
|
||||||
|
{{ chapter }}
|
||||||
|
</a>
|
||||||
|
—
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<a class="tag" href="/series/{{ . | urlize }}">
|
<a class="tag" href="/series/{{ . | urlize }}">
|
||||||
{{ . }}
|
{{ . }}
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -3,6 +3,11 @@ media_folder: "static/images/uploads"
|
||||||
# The src attribute for uploaded media will begin with /images/uploads
|
# The src attribute for uploaded media will begin with /images/uploads
|
||||||
public_folder: "/images/uploads"
|
public_folder: "/images/uploads"
|
||||||
|
|
||||||
|
slug:
|
||||||
|
encoding: "ascii"
|
||||||
|
clean_accents: true
|
||||||
|
sanitize_replacement: "-"
|
||||||
|
|
||||||
backend:
|
backend:
|
||||||
name: github
|
name: github
|
||||||
repo: HumanoidSandvichDispenser/sandvich.xyz
|
repo: HumanoidSandvichDispenser/sandvich.xyz
|
||||||
|
@ -30,3 +35,63 @@ collections:
|
||||||
- label: "Tags"
|
- label: "Tags"
|
||||||
name: "tags"
|
name: "tags"
|
||||||
widget: "list"
|
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"
|
||||||
|
|
Loading…
Reference in New Issue