mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 00:52:16 -06:00
53 lines
896 B
HTML
53 lines
896 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ s_doctitle }}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.8">
|
|
<meta name="theme-color" content="#333">
|
|
<link rel="stylesheet" media="screen" href="{{ r }}/.cpr/msg.css?_={{ ts }}">
|
|
{{ html_head }}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="box">
|
|
|
|
{%- if h1 %}
|
|
<h1>{{ h1 }}</h1>
|
|
{%- endif %}
|
|
|
|
{%- if h2 %}
|
|
<h2>{{ h2 }}</h2>
|
|
{%- endif %}
|
|
|
|
{%- if p %}
|
|
<p>{{ p }}</p>
|
|
{%- endif %}
|
|
|
|
{%- if pre %}
|
|
<pre>{{ pre }}</pre>
|
|
{%- endif %}
|
|
|
|
{%- if html %}
|
|
{{ html }}
|
|
{%- endif %}
|
|
|
|
{%- if click %}
|
|
<script>document.getElementsByTagName("a")[0].click()</script>
|
|
{%- endif %}
|
|
</div>
|
|
|
|
{%- if redir %}
|
|
<script>
|
|
setTimeout(function() {
|
|
location.replace("{{ redir }}");
|
|
}, 1000);
|
|
</script>
|
|
{%- endif %}
|
|
</body>
|
|
|
|
</html>
|
|
|