mirror of
https://github.com/ankitects/anki.git
synced 2025-11-27 06:57:11 -05:00
17 lines
455 B
HTML
17 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" id="viewport" content="width=device-width" />
|
|
</head>
|
|
<body>
|
|
<div id="main"></div>
|
|
</body>
|
|
<script>
|
|
const nightMode = window.location.hash == "#night";
|
|
if (nightMode) {
|
|
document.body.className = "night-mode";
|
|
}
|
|
anki.graphs(document.getElementById("main"), nightMode);
|
|
</script>
|
|
</html>
|