mirror of
https://codeberg.org/vegvisir/website.git
synced 2025-09-14 00:43:42 +02:00
28 lines
No EOL
673 B
PHP
28 lines
No EOL
673 B
PHP
<?php
|
|
|
|
use const VVWebsite\ICONS_DIR;
|
|
|
|
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>
|
|
<button class="inline menu">
|
|
<?= VV::embed(ICONS_DIR . "hamburger.svg") ?>
|
|
<p>docs menu</p>
|
|
</button>
|
|
</section>
|