25 lines
635 B
PHP
25 lines
635 B
PHP
<?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://instagram.com/getkirby">
|
|
<?= svg('assets/icons/instagram.svg') ?>
|
|
</a>
|
|
<a href="https://youtube.com/kirbycasts">
|
|
<?= svg('assets/icons/youtube.svg') ?>
|
|
</a>
|
|
<a href="https://chat.getkirby.com">
|
|
<?= svg('assets/icons/discord.svg') ?>
|
|
</a>
|
|
</span>
|