From 51cc913aeddddba6014afd1e04cdc1687b196f4b Mon Sep 17 00:00:00 2001 From: "this.ven" Date: Sat, 3 Feb 2024 13:19:30 +0100 Subject: [PATCH] Add Talks and iframe shortcode --- assets/css/custom.css | 16 +++++++++++++++ .../20231007-modep-with-pisound/_index.md | 20 +++++++++++++++++++ .../slides/modep-with-pisound.pdf | 3 +++ content/talks/_index.md | 6 ++++++ layouts/shortcodes/iframe.html | 7 +++++++ 5 files changed, 52 insertions(+) create mode 100644 assets/css/custom.css create mode 100644 content/talks/20231007-modep-with-pisound/_index.md create mode 100755 content/talks/20231007-modep-with-pisound/slides/modep-with-pisound.pdf create mode 100644 layouts/shortcodes/iframe.html diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..d2e3256 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,16 @@ +/* Responsive iframe */ + +.wrap-element { + position: relative; + overflow: hidden; + padding-top: 56.25%; +} + +.wrapped-iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} \ No newline at end of file diff --git a/content/talks/20231007-modep-with-pisound/_index.md b/content/talks/20231007-modep-with-pisound/_index.md new file mode 100644 index 0000000..2db5c65 --- /dev/null +++ b/content/talks/20231007-modep-with-pisound/_index.md @@ -0,0 +1,20 @@ +--- +title: 'MODEP With Pisound' +date: 2024-02-03T12:22:42+01:00 +draft: true +--- + +{{< iframe "https://media.ccc.de/v/sonoj2023-23004-modep-pisound/oembed" >}} + +## Alternatives to the MOD Platform for Tinkerers + +In this talk I present the MODEP virtual pedalboard with the Pisound HAT for Raspberry Pi powered by Patchbox OS. + +{{< details title="Details" >}} + +Event: [Sonoj 2023](https://sonoj.org/2023/) +Date: 2023-10-07 +Source: [media.ccc.de](https://media.ccc.de/v/sonoj2023-23004-modep-pisound) +Slides: [modep-with-pisound.pdf](slides/modep-with-pisound.pdf) + +{{< /details >}} \ No newline at end of file diff --git a/content/talks/20231007-modep-with-pisound/slides/modep-with-pisound.pdf b/content/talks/20231007-modep-with-pisound/slides/modep-with-pisound.pdf new file mode 100755 index 0000000..7b74005 --- /dev/null +++ b/content/talks/20231007-modep-with-pisound/slides/modep-with-pisound.pdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63b635e6dda29a805febaf9d251fe8886781fcf5385b7bd301c97053bbf8213f +size 4632481 diff --git a/content/talks/_index.md b/content/talks/_index.md index ac7afd6..12a1eb0 100644 --- a/content/talks/_index.md +++ b/content/talks/_index.md @@ -3,3 +3,9 @@ title: 'Talks' date: 2024-01-01T19:42:04+01:00 draft: true --- + +{{< cards >}} + {{< card link="20231007-modep-with-pisound/" title="MODEP with Pisound" + image="https://static.media.ccc.de/media/events/sonoj/2023/23004-99c58358-0707-4ef3-bac5-920b4f1a7ef6_preview.jpg" + subtitle="Sonoj 2023" >}} +{{< /cards >}} \ No newline at end of file diff --git a/layouts/shortcodes/iframe.html b/layouts/shortcodes/iframe.html new file mode 100644 index 0000000..48d7e26 --- /dev/null +++ b/layouts/shortcodes/iframe.html @@ -0,0 +1,7 @@ +
+ +
\ No newline at end of file