Files
rio/frontend/index.html
2024-04-03 19:23:29 +02:00

17 lines
649 B
HTML

<!doctype html>
<!-- Until the CSS is loaded and the server sends us the theme colors, make the background dark so
that dark mode users don't get flashbanged by a completely white screen -->
<html data-theme="dark" style="background: #333">
<head>
<title>{title}</title>
<link rel="icon" type="image/x-icon" href="/rio/favicon.png" />
<!-- <link rel="stylesheet" type="text/css" href="/rio/asset/highlightjs-default-light.css"> -->
<link rel="stylesheet" href="css/style.scss" />
<script src="code/app.ts" type="module"></script>
</head>
<body class="rio-switcheroo-background"></body>
</html>