Website/www/index.html

75 lines
2.3 KiB
HTML
Raw Normal View History

2020-10-09 20:21:05 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SPT-AKI</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header aki-toolbar>
<a class="left" href="#home">
<img class="logo" src="./assets/img/logo.png">
<span class="title text2">
<span>SPT-AKI</span>
</span>
</a>
<nav class="text2 center">
<a href="#home" active>Home</a>
<a href="#download">Download</a>
<a href="#features">Features</a>
<a href="#community">Community</a>
<button aki-menu>
<img src="./assets/img/icons/baseline_menu_white_24dp.png" alt="menu">
</button>
</nav>
<nav class="text2 right dropdown">
<div class="dropdown-button">...</div>
<div class="dropdown-content">
<a href="https://docs.sp-tarkov.com">Docs</a>
2020-10-21 17:15:47 +02:00
<a href="https://mods.sp-tarkov.com">Mods</a>
<a href="https://dev.sp-tarkov.com">Dev</a>
2020-10-09 20:21:05 +02:00
</div>
</nav>
</header>
<main>
<div class="bg-video">
<div class="wrapper">
<video autoplay muted loop>
<source src="./assets/video/background.mp4" type="video/mp4">
</video>
</div>
<div class="overlay"></div>
</div>
<div id="router-outlet">
<!-- This is where the magic happens -->
</div>
</main>
2020-11-20 01:18:59 +01:00
<footer>Senko's Pub nor SPT-AKI is not affiliated with Battlestate Games Ltd. in any way.</footer>
2020-10-09 20:21:05 +02:00
2020-10-21 17:15:47 +02:00
<!-- TODO: do something more elegant than this horrible "hack" -->
2020-10-09 20:21:05 +02:00
<div class="text2" overlay-menu-content closed>
<a href="#home" active>Home</a>
<a href="#download">Download</a>
<a href="#features">Features</a>
<a href="#community">Community</a>
<hr aki-divider>
2020-11-20 01:18:59 +01:00
<span class="disclaimer text1">Senko's Pub nor SPT-AKI is affiliated with Battlestate Games Ltd. in any way.</span>
2020-10-09 20:21:05 +02:00
</div>
<script src="./assets/js/akiSideMenu.js"></script>
2020-10-21 17:15:47 +02:00
<script src="./assets/js/aki-navigator.js"></script>
2020-10-09 20:21:05 +02:00
<script>
2020-10-21 17:15:47 +02:00
const akiNavigator = new AkiNavigator('home');
2020-10-09 20:21:05 +02:00
</script>
</body>
</html>