mirror of
https://github.com/rio-labs/rio.git
synced 2026-02-08 23:00:39 -06:00
17 lines
649 B
HTML
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>
|