blob: c44b353d46335f44028a13b84f550708a18afe28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title><!-- $title --></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href=".data/css/main.css"/>
<link rel="stylesheet" type="text/css" href=".data/css/light.css" id="theme"/>
<!-- glightbox (C) biati digital, MIT licensed. <https://biati-digital.github.io/glightbox/> -->
<link rel="stylesheet" href=".data/css/glightbox.min.css" />
<script>
function addStyleSheet(name, id) {
var path = '.data/css/' + name + '.css';
var old = document.getElementById(id);
if (old && (old.href != path)) {
old.href = path;
}
}
const currentTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
addStyleSheet(currentTheme, 'theme');
</script>
<script src=".data/js/glightbox.min.js"></script>
</head>
<body><div>
|