mirror of
https://github.com/9001/copyparty.git
synced 2025-08-19 01:42:20 -06:00
54 lines
1.5 KiB
HTML
54 lines
1.5 KiB
HTML
<!DOCTYPE html><html><head>
|
|
<meta charset="utf-8">
|
|
<title>📝🎉 {{ title }}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.7">
|
|
{{ html_head }}
|
|
<link rel="stylesheet" href="/.cpr/ui.css?_={{ ts }}">
|
|
<link rel="stylesheet" href="/.cpr/mde.css?_={{ ts }}">
|
|
<link rel="stylesheet" href="/.cpr/deps/mini-fa.css?_={{ ts }}">
|
|
<link rel="stylesheet" href="/.cpr/deps/easymde.css?_={{ ts }}">
|
|
</head>
|
|
<body>
|
|
<div id="mw">
|
|
<div id="mn"></div>
|
|
<div id="ml">
|
|
<div style="text-align:center;margin:5em 0">
|
|
<div style="font-size:2em;margin:1em 0">Loading</div>
|
|
if you're still reading this, check that javascript is allowed
|
|
</div>
|
|
</div>
|
|
<div id="m">
|
|
<textarea id="mt" style="display:none" autocomplete="off">{{ md }}</textarea>
|
|
</div>
|
|
</div>
|
|
<a href="#" id="repl">π</a>
|
|
<script>
|
|
|
|
var last_modified = {{ lastmod }},
|
|
have_emp = {{ have_emp }};
|
|
|
|
var md_opt = {
|
|
link_md_as_html: false,
|
|
modpoll_freq: {{ md_chk_rate }}
|
|
};
|
|
|
|
var lightswitch = (function () {
|
|
var l = localStorage,
|
|
drk = l.light != 1,
|
|
f = function (e) {
|
|
if (e) drk = !drk;
|
|
document.documentElement.className = drk? "z":"y";
|
|
l.light = drk? 0:1;
|
|
};
|
|
f();
|
|
return f;
|
|
})();
|
|
|
|
</script>
|
|
<script src="/.cpr/util.js?_={{ ts }}"></script>
|
|
<script src="/.cpr/deps/marked.js?_={{ ts }}"></script>
|
|
<script src="/.cpr/deps/easymde.js?_={{ ts }}"></script>
|
|
<script src="/.cpr/mde.js?_={{ ts }}"></script>
|
|
</body></html>
|