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.
27 lines
645 B
27 lines
645 B
<!doctype html> |
|
|
|
<html lang="ru"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>Книга отзывов</title> |
|
<link rel="icon" type="image/png" sizes="256x256" href="static/favicon.png"> |
|
<link rel="stylesheet" type="text/css" href="static/styles.css"> |
|
</head> |
|
|
|
<body> |
|
<div class="main"> |
|
<h1>Книга отзывов</h1> |
|
|
|
|
|
<form action="/new" method="POST"> |
|
<p>Всего записей - {{ .Count }}</p> |
|
<input type="text" name="comment" placeholder="Ваш отзыв..."> |
|
<input type="submit" value="Отправить"> |
|
</form> |
|
|
|
<ul> |
|
{{ range .Comments }}<li>{{ . }}</li>{{ end}} |
|
</ul> |
|
</div> |
|
</body> |
|
</html>
|
|
|