website/snippets/footer.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>