blob: 50b792e8fa8820f3e7d3ce88e88c7331f3bc8821 [file] [log] [blame]
DTabidze4b44ff42024-04-02 03:16:26 +04001<!DOCTYPE html>
2<html lang="en" data-theme="light">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>{{ block "title" . }}{{ end }}</title>
7 <link rel="stylesheet" href="/static/pico.2.0.6.min.css">
Davit Tabidze5f1a2c62024-07-17 17:57:27 +04008 <link rel="stylesheet" href="/static/main.css?v=0.0.1">
DTabidze4b44ff42024-04-02 03:16:26 +04009</head>
10<body class="container">
11 {{- block "content" . }}
12 {{- end }}
13 {{ if ne .ErrorMessage "" }}
14 <dialog id="error-message" open>
15 <article>
Davit Tabidze5f1a2c62024-07-17 17:57:27 +040016 <h3>Error</h3>
DTabidze4b44ff42024-04-02 03:16:26 +040017 <p id="error-message-content">{{ .ErrorMessage }}</p>
18 <footer>
19 <button id="error-cancel-button" class="secondary error-cancel-button">Close</button>
20 </footer>
21 </article>
22 </dialog>
23 {{ end }}
24 <script src="/static/main.js"></script>
25</body>
26</html>