From f3899c14e1d95b8801af60a7c0539a498e67e6b0 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 21 Jan 2025 21:50:59 +0000 Subject: WayWORD event 4th Feb --- src/content/news/en-GB/2025-01-21-wayword.mdx | 23 +++++++++++++++++++++++ src/content/news/sco/2025-01-21-wayword.mdx | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 src/content/news/en-GB/2025-01-21-wayword.mdx create mode 100644 src/content/news/sco/2025-01-21-wayword.mdx diff --git a/src/content/news/en-GB/2025-01-21-wayword.mdx b/src/content/news/en-GB/2025-01-21-wayword.mdx new file mode 100644 index 0000000..93fabda --- /dev/null +++ b/src/content/news/en-GB/2025-01-21-wayword.mdx @@ -0,0 +1,23 @@ +--- +title: Get involved with WayWORD - 4th Feb, Aberdeen +summary: >- + WayWORD, the arts festival in Aberdeen, is looking for creative people keen + to get involved. +--- + +I'll lat WayWORD, the arts festival sponsored by the University of Aberdeen and +Creative Scotland, speak for themselves: + +> WayWORD is looking for young people (16-25) and students interested in arts +> events. +> +> Do you have a great idea for an event? Or a passion for making things happen? +> Want to learn new skills in the creative industries? +> +> WayWORD Festival provides opportunities and support for young people (16-25) +> and students to devise, develop and programme arts events in Aberdeen: author +> events, workshops, panel discussions and performances. Think literature, +> poetry, visual arts, music, theatre and new or unique media! + +See more details and sign up at +[waywordfestival.com](https://www.waywordfestival.com). diff --git a/src/content/news/sco/2025-01-21-wayword.mdx b/src/content/news/sco/2025-01-21-wayword.mdx new file mode 100644 index 0000000..92c97bf --- /dev/null +++ b/src/content/news/sco/2025-01-21-wayword.mdx @@ -0,0 +1,23 @@ +--- +title: Get involved wi WayWORD - 4th Feb, Aiberdeen +summary: >- + WayWORD, the arts festival in Aiberdeen, is leukin for creative bodies keen + tae get involved. +--- + +I'll lat WayWORD, the arts festival sponsored bi the University o Aiberdeen and +Creative Scotland, spik for theirsels: + +> WayWORD is looking for young people (16-25) and students interested in arts +> events. +> +> Do you have a great idea for an event? Or a passion for making things happen? +> Want to learn new skills in the creative industries? +> +> WayWORD Festival provides opportunities and support for young people (16-25) +> and students to devise, develop and programme arts events in Aberdeen: author +> events, workshops, panel discussions and performances. Think literature, +> poetry, visual arts, music, theatre and new or unique media! + +See mair details and sign up at +[waywordfestival.com](https://www.waywordfestival.com). -- cgit v1.2.3 From 28d39250dad232fe3bd9cd2e9765297ec07c3e92 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 21 Jan 2025 22:02:30 +0000 Subject: blockquote styling --- scss/base/_blockquote.scss | 6 ++++++ scss/base/_index.scss | 1 + 2 files changed, 7 insertions(+) create mode 100644 scss/base/_blockquote.scss diff --git a/scss/base/_blockquote.scss b/scss/base/_blockquote.scss new file mode 100644 index 0000000..5e9cdbe --- /dev/null +++ b/scss/base/_blockquote.scss @@ -0,0 +1,6 @@ +blockquote { + margin-inline: 0; + margin-block-start: var(--spacing-block-sm); + padding-inline-start: var(--spacing-inline-lg); + border-inline-start: 2px solid var(--special-text-color); +} diff --git a/scss/base/_index.scss b/scss/base/_index.scss index ba0d3f1..77bdef0 100644 --- a/scss/base/_index.scss +++ b/scss/base/_index.scss @@ -1,4 +1,5 @@ @use 'address'; +@use 'blockquote'; @use 'details'; @use 'dl'; @use 'list'; -- cgit v1.2.3