vlt
Version:
The vlt CLI
71 lines (64 loc) • 1.78 kB
HTML
<html lang="en">
<head>
<!-- The first thing in any HTML file should be the charset -->
<meta charset="utf-8" />
<!-- Make the page mobile compatible -->
<meta
name="viewport"
content="width=device-width, initial-scale=1" />
<!-- Allow installing the app to the homescreen -->
<meta name="mobile-web-app-capable" content="yes" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="/styles/main.css" />
<link
rel="preload"
href="/fonts/inter.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/geist-mono.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/courier-regular.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/courier-bold.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/courier-italic.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<link
rel="preload"
href="/fonts/courier-bold-italic.ttf"
as="font"
type="font/ttf"
crossorigin="anonymous" />
<title>vlt | Explorer</title>
</head>
<body>
<!-- Display a message if JS has been disabled on the browser. -->
<noscript
>If you're seeing this message, that means
<strong>JavaScript has been disabled on your browser</strong>,
please <strong>enable JS</strong> to make this app
work.</noscript
>
<!-- The app hooks into this div -->
<div id="app"></div>
<script src="/index.js"></script>
</body>
</html>