mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-10 23:33:00 +03:00
15 lines
287 B
Cheetah
15 lines
287 B
Cheetah
{{ define "root" }}
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{ template "style" . }}
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{{ template "base" . }}
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|