mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00
This PR adds support for the latest major release of the [Vegvisir framework](https://vegvisir.vlw.se) Reviewed-on: https://codeberg.org/vlw/vlw.se/pulls/1 Co-authored-by: vlw <victor@vlw.se> Co-committed-by: vlw <victor@vlw.se>
26 lines
No EOL
968 B
PHP
26 lines
No EOL
968 B
PHP
<?php
|
|
|
|
enum RGB: string {
|
|
case WORK = "3,255,219";
|
|
case ABOUT = "148,255,21";
|
|
case CONTACT = "255,195,255";
|
|
}
|
|
|
|
?>
|
|
<style><?= VV::css("assets/css/pages/index") ?></style>
|
|
<div class="menu">
|
|
<?= VV::embed("assets/media/line.svg") ?>
|
|
<menu>
|
|
<a href="/work" vv="index" vv-call="navigate"><li data-rgb="<?= RGB::WORK->value ?>" data-hue="90">work</li></a>
|
|
<a href="/about" vv="index" vv-call="navigate"><li data-rgb="<?= RGB::ABOUT->value ?>" data-hue="390">about</li></a>
|
|
<a href="/contact" vv="index" vv-call="navigate"><li data-rgb="<?= RGB::CONTACT->value ?>" data-hue="200">contact</li></a>
|
|
</menu>
|
|
<?= VV::embed("assets/media/line.svg") ?>
|
|
<button class="email">
|
|
<p>victor@vlw.se</p>
|
|
<p class="cta">to copy</p>
|
|
</button>
|
|
</div>
|
|
|
|
<img src="/assets/media/gazing.jpg" alt="A portrait of Victor with a pair of cartoon glasses drawn in the shape of two V's over his eyes"/>
|
|
<script type="module"><?= VV::js("assets/js/pages/index") ?></script>
|