diff --git a/content/music/tinkering/2024-02-24.md b/content/music/tinkering/2024-02-24.md new file mode 100644 index 0000000..610181b --- /dev/null +++ b/content/music/tinkering/2024-02-24.md @@ -0,0 +1,17 @@ +--- +title: Tinkering session 2024-02-24 +date: 2024-02-24 +extra: + cover_img: /images/music/tinkering/2024-02-24-cover.png +--- + +A fairly lean track. This session was an experiment in real-time performance inside Live. + + diff --git a/content/music/tinkering/_index.md b/content/music/tinkering/_index.md new file mode 100644 index 0000000..5a2b1db --- /dev/null +++ b/content/music/tinkering/_index.md @@ -0,0 +1,9 @@ +--- +title: Tinkering +sort_by: date +template: "video-timeline.html" +--- + +Sometimes I record myself "tinkering". The sessions that sound interesting end up here + +## Sessions diff --git a/static/images/music/tinkering/2024-02-24-cover.png b/static/images/music/tinkering/2024-02-24-cover.png new file mode 100644 index 0000000..eb1fa24 Binary files /dev/null and b/static/images/music/tinkering/2024-02-24-cover.png differ diff --git a/templates/video-timeline.html b/templates/video-timeline.html new file mode 100644 index 0000000..b67e080 --- /dev/null +++ b/templates/video-timeline.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} + + +{% block content %} + +{{super()}} + +{% for page in section.pages %} +{% if not page.extra.hidden %} + + + {% if page.extra.cover_img %} + + {% else %} + + {% endif %} + + {{page.title}} + {{page.date}} + + + + + +{% endif %} +{% endfor %} + +{% endblock content %} \ No newline at end of file