blob: d7966bf3d6206492be638d973204eceecf0b5f51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Portgate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="_portgate/static/index.css" />
</head>
<body>
<div class="container">
<img
class="logo"
src="_portgate/static/portgate.svg"
alt="Portgate"
/>
<h1 class="title">Portgate</h1>
{{template "content"}}
</div>
</body>
</html>
|