From 9cf12b9bbca53238e9b452c41dd90691d68e20ab Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Fri, 9 Dec 2022 13:43:18 +0100 Subject: [PATCH 1/6] =?UTF-8?q?`aria-current=3D=E2=80=9Cpage=E2=80=9D`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #47 --- site/snippets/header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/snippets/header.php b/site/snippets/header.php index 7daf30e..d301cbd 100644 --- a/site/snippets/header.php +++ b/site/snippets/header.php @@ -78,7 +78,7 @@ */ ?> children()->listed() as $item): ?> - isOpen(), 'aria-current ') ?> href="url() ?>">title()->esc() ?> + isOpen(), 'aria-current="page"') ?> href="url() ?>">title()->esc() ?> From 165a3e0478f754550a828355ae95a7a127a72b94 Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Fri, 9 Dec 2022 13:47:36 +0100 Subject: [PATCH 2/6] Fix #46 --- .../2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt index 9f23d4e..9dbc229 100644 --- a/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt +++ b/content/2_notes/20201210_exploring-the-universe/dark-forest.jpg.txt @@ -1,4 +1,4 @@ -Template: blocks/image +Template: image ---- From ae662daaf2b74411e32c8881c77735cb89035ce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Hoffmann=20=20=E0=B7=B4?= Date: Fri, 9 Dec 2022 13:59:25 +0100 Subject: [PATCH 3/6] README: add not about starterkit licensing --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 94771ad..a083f31 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,9 @@ You can learn more about Kirby at [getkirby.com](https://getkirby.com). ### Try Kirby for free You can try Kirby and the Starterkit on your local machine or on a test server as long as you need to make sure it is the right tool for your next project. … and when you’re convinced, [buy your license](https://getkirby.com/buy). -The starterkit is a demo of basic Kirby features. It's not recommended to be used "as is" in production. Please, follow our documentation closely for more features and guides on how to build secure, high-quality websites with Kirby. +The Starterkit is a demo of basic Kirby features. It's not recommended to be used "as is" in production. Please, follow our documentation closely for more features and guides on how to build secure, high-quality websites with Kirby. + +While Kirby as the CMS software itself requires you to purchase a license, we consider the files primarily connected to this Starterkit (assets, templates, snippets...) free to use under the MIT license. Feel free to start building your own project with them. ### Get going Read our guide on [how to get started with Kirby](https://getkirby.com/docs/guide/quickstart). From c232b329fe323aeb18030bb85fa8eea187a45b9a Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Fri, 9 Dec 2022 15:00:18 +0100 Subject: [PATCH 4/6] Swap Twitter with YouTube social media icon --- assets/icons/twitter.svg | 1 - assets/icons/youtube.svg | 4 ++++ content/3_about/about.txt | 10 +++++----- site/snippets/social.php | 10 +++++----- 4 files changed, 14 insertions(+), 11 deletions(-) delete mode 100644 assets/icons/twitter.svg create mode 100644 assets/icons/youtube.svg diff --git a/assets/icons/twitter.svg b/assets/icons/twitter.svg deleted file mode 100644 index 683d57e..0000000 --- a/assets/icons/twitter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/icons/youtube.svg b/assets/icons/youtube.svg new file mode 100644 index 0000000..b1a8b24 --- /dev/null +++ b/assets/icons/youtube.svg @@ -0,0 +1,4 @@ + + YouTube + + diff --git a/content/3_about/about.txt b/content/3_about/about.txt index d580e49..138d6c8 100644 --- a/content/3_about/about.txt +++ b/content/3_about/about.txt @@ -20,13 +20,13 @@ Phone: +49 1234 5678 Social: -- - platform: Twitter - url: https://twitter.com/getkirby -- +- + platform: YouTube + url: https://youtube.com/kirbycasts +- platform: Instagram url: https://instagram.com/getkirby -- +- platform: Discord url: https://chat.getkirby.com diff --git a/site/snippets/social.php b/site/snippets/social.php index 54363e9..5d2ae98 100644 --- a/site/snippets/social.php +++ b/site/snippets/social.php @@ -12,13 +12,13 @@ */ ?> From bd34df830151dc95fbb4b609f0e82f9ed0c0782e Mon Sep 17 00:00:00 2001 From: Nico Hoffmann Date: Fri, 9 Dec 2022 16:59:32 +0100 Subject: [PATCH 5/6] Add Mastodon social icon --- assets/icons/mastodon.svg | 1 + site/snippets/social.php | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 assets/icons/mastodon.svg diff --git a/assets/icons/mastodon.svg b/assets/icons/mastodon.svg new file mode 100644 index 0000000..e8da7d9 --- /dev/null +++ b/assets/icons/mastodon.svg @@ -0,0 +1 @@ + diff --git a/site/snippets/social.php b/site/snippets/social.php index 5d2ae98..6425aea 100644 --- a/site/snippets/social.php +++ b/site/snippets/social.php @@ -12,13 +12,16 @@ */ ?> From 343909d7d76c7209aef564478ee1f42142c45a01 Mon Sep 17 00:00:00 2001 From: Bastian Allgeier Date: Mon, 12 Dec 2022 12:05:06 +0100 Subject: [PATCH 6/6] Remove Twitter --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a083f31..0d2672b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ If you are familiar with Git, you can clone Kirby's Starterkit repository from G - **[Forum](https://forum.getkirby.com)** – Whenever you get stuck, don't hesitate to reach out for questions and support. - **[Discord](https://chat.getkirby.com)** – Hang out and meet the community. - **[YouTube](https://youtube.com/kirbyCasts)** - Watch the latest video tutorials visually with Bastian. -- **[Twitter](https://twitter.com/getkirby)** – Spread the word. +- **[Mastodon](https://mastodon.social/@getkirby)** – Spread the word. - **[Instagram](https://www.instagram.com/getkirby/)** – Share your creations: #madewithkirby. ---