You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
{{ define "base" }} |
|
|
|
<!-- gochat - A dead simple real time webchat. |
|
Copyright (C) 2022 Kasyanov Nikolay Alexeyevich (Unbewohnte) |
|
This file is a part of gochat |
|
This program is free software: you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation, either version 3 of the License, or |
|
(at your option) any later version. |
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
You should have received a copy of the GNU General Public License |
|
along with this program. If not, see <https://www.gnu.org/licenses/>. --> |
|
|
|
<!DOCTYPE html> |
|
<html lang="en" dir="ltr"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>gochat</title> |
|
<link rel="shortcut icon" href="/static/images/favicon.png"> |
|
<link rel="stylesheet" href="/static/style.css"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<script src="/scripts/constants.js"></script> |
|
<script src="/scripts/util.js"></script> |
|
</head> |
|
|
|
<body> |
|
|
|
<div id="wrapper"> |
|
<nav> |
|
<a href="/">main</a> |
|
| |
|
<a href="/register">register</a> |
|
| |
|
<a href="/login">log in</a> |
|
</nav> |
|
|
|
<div id="error_output"></div> |
|
|
|
<div id="content"> |
|
{{ template "content" .}} |
|
</div> |
|
</div> |
|
|
|
</body> |
|
|
|
</html> |
|
|
|
{{ end }} |