mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-13 16:33:42 +02:00
27 lines
No EOL
678 B
PHP
27 lines
No EOL
678 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="/"><button class="inline sly">
|
|
<p>introduction</p>
|
|
</button></a>
|
|
<a href="/about"><button class="inline sly">
|
|
<p>get started</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/about"><button class="inline sly">
|
|
<p>installation</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/docs"><button class="inline sly">
|
|
<p>cheat sheets</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
</nav>
|
|
</section>
|