website/snippets/docs/v3.1.3/header.php

28 lines
No EOL
731 B
PHP

<?php
use const VVWebsite\DEFAULT_BUTTON_ICON;
require_once VV::root("src/Consts.php");
?>
<style><?= VV::css("public/assets/css/snippets/docs/header") ?></style>
<section class="header">
<nav>
<a href="/docs"><button class="inline sly">
<p>introduction</p>
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
</button></a>
<a href="/docs/installation"><button class="inline sly">
<p>installation</p>
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
</button></a>
<a href="/docs/PHP"><button class="inline sly">
<p>PHP</p>
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
</button></a>
<a href="/docs/JS"><button class="inline sly">
<p>JavaScript</p>
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
</button></a>
</nav>
</section>