Initial commit

This commit is contained in:
KirbyCMS Deploy
2026-04-15 11:50:31 +00:00
commit 0a8c107828
1114 changed files with 203788 additions and 0 deletions

27
site/snippets/social.php Normal file
View File

@@ -0,0 +1,27 @@
<?php
/*
Snippets are a great way to store code snippets for reuse
or to keep your templates clean.
In this snippet the svg() helper is a great way to embed SVG
code directly in your HTML. Pass the path to your SVG
file to load it.
More about snippets:
https://getkirby.com/docs/guide/templates/snippets
*/
?>
<span class="social">
<a href="https://mastodon.social/@getkirby" aria-label="Follow us on Mastodon">
<?= svg('assets/icons/mastodon.svg') ?>
</a>
<a href="https://instagram.com/getkirby" aria-label="Follow us on Instagram">
<?= svg('assets/icons/instagram.svg') ?>
</a>
<a href="https://youtube.com/kirbycasts" aria-label="Watch our videos on YouTube">
<?= svg('assets/icons/youtube.svg') ?>
</a>
<a href="https://chat.getkirby.com" aria-label="Chat with us on Discord">
<?= svg('assets/icons/discord.svg') ?>
</a>
</span>