26 lines
653 B
Plaintext
26 lines
653 B
Plaintext
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
<title>
|
|
<%= title %>
|
|
</title>
|
|
<style>
|
|
html {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background-color: #121212;
|
|
color: #e0e0e0;
|
|
}
|
|
}
|
|
</style>
|
|
<link href="/static/missing/missing.min.css" rel="stylesheet" />
|
|
<link href="/static/victormono/index.css" rel="stylesheet" />
|
|
<link href="/static/app.css" rel="stylesheet" />
|
|
</head>
|