25 lines
749 B
HTML
25 lines
749 B
HTML
{{define "main"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
|
|
<link rel="stylesheet" href="/static/css/bootstrap.min.css" type="text/css">
|
|
<link rel="stylesheet" href="/static/css/main.css?2" type="text/css">
|
|
<link rel="manifest" href="/manifest.webmanifest">
|
|
<link rel="icon" type="image/png" href="/static/img/icon.png">
|
|
<title>Remote i3-wm</title>
|
|
</head>
|
|
<body>
|
|
{{template "content" .}}
|
|
|
|
<div id="disconneced">
|
|
You are disconnected [<a href="#" onclick="location.reload(); return false;">Refresh</a>]
|
|
</div>
|
|
|
|
<div id="response"></div>
|
|
|
|
<script src="/static/js/main.js"></script>
|
|
</body>
|
|
</html>
|
|
{{end}}
|