2019-03-16 21:15:45 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
2020-03-30 01:50:43 +02:00
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
2019-03-16 21:15:45 +01:00
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/css/hack/hack.css">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/css/site.css">
|
|
|
|
<script type="application/javascript" src="/static/js/jquery.js"></script>
|
2019-03-17 06:55:50 +01:00
|
|
|
<script type="application/javascript" src="/static/js/both.js"></script>
|
2019-03-16 21:15:45 +01:00
|
|
|
{{template "header" .}}
|
|
|
|
</head>
|
2019-03-17 22:31:48 +01:00
|
|
|
|
2019-03-16 21:15:45 +01:00
|
|
|
<body class="scrollbar">
|
2019-04-01 03:17:19 +02:00
|
|
|
<img id="remote" src="/static/img/remote.png" onclick="flipRemote();" />
|
|
|
|
<div id="devKeys"></div>
|
2020-06-07 00:55:03 +02:00
|
|
|
{{template "body" .}}
|
2019-03-16 21:15:45 +01:00
|
|
|
</body>
|
2019-03-17 22:31:48 +01:00
|
|
|
|
2020-06-07 00:55:03 +02:00
|
|
|
</html>
|