mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 08:53:42 +02:00
31 lines
No EOL
748 B
PHP
31 lines
No EOL
748 B
PHP
<?php
|
|
|
|
use const VVWebsite\DEFAULT_BUTTON_ICON;
|
|
|
|
require_once VV::root("src/Consts.php");
|
|
|
|
?>
|
|
<style><?= VV::css("public/assets/css/snippets/footer") ?></style>
|
|
<footer>
|
|
<nav>
|
|
<p>Copyleft <?= date("Y") ?> - All rights reversed</p>
|
|
</nav>
|
|
<nav>
|
|
<a href="/"><button class="inline sly">
|
|
<p>vlw</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/"><button class="inline sly">
|
|
<p>license</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/"><button class="inline sly">
|
|
<p>website</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/"><button class="inline solid sly">
|
|
<p>contribute ❤️</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
</nav>
|
|
</footer>
|