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