mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
27 lines
No EOL
635 B
PHP
27 lines
No EOL
635 B
PHP
<?php
|
|
|
|
use const VVWebsite\DEFAULT_BUTTON_ICON;
|
|
|
|
require_once VV::root("src/Consts.php");
|
|
|
|
?>
|
|
<style><?= VV::css("public/assets/css/pages/docs/aside") ?></style>
|
|
<aside>
|
|
<nav>
|
|
<a href="/docs"><button class="inline">
|
|
<p>introduction</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
<a href="/docs/get-started"><button class="inline solid">
|
|
<p>get started guide</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
</nav>
|
|
<div class="spacer"></div>
|
|
<nav>
|
|
<a href="/docs/Reference"><button class="inline">
|
|
<p>References</p>
|
|
<?= VV::embed(DEFAULT_BUTTON_ICON) ?>
|
|
</button></a>
|
|
</nav>
|
|
</aside>
|