| DTabidze | 4b44ff4 | 2024-04-02 03:16:26 +0400 | [diff] [blame^] | 1 | <!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"> |
| 8 | <link rel="stylesheet" href="/static/main.css"> |
| 9 | </head> |
| 10 | <body class="container"> |
| 11 | {{- block "content" . }} |
| 12 | {{- end }} |
| 13 | {{ if ne .ErrorMessage "" }} |
| 14 | <dialog id="error-message" open> |
| 15 | <article> |
| 16 | <h2>Error</h2> |
| 17 | <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> |