2021-10-16 14:36:52 +03:00
|
|
|
<!DOCTYPE html>
|
2021-08-28 17:34:58 +03:00
|
|
|
<html lang="en">
|
2022-01-20 22:03:18 +03:00
|
|
|
|
2021-08-28 17:34:58 +03:00
|
|
|
<head>
|
2021-09-05 15:38:08 +03:00
|
|
|
{{ template "static" }}
|
2022-01-20 22:03:18 +03:00
|
|
|
<link href="/static/styles/index.css" rel="stylesheet">
|
2021-10-05 21:46:17 +03:00
|
|
|
{{ template "meta-tags-static" }}
|
2021-08-28 17:34:58 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-01-28 02:44:35 +03:00
|
|
|
{{ template "header" }}
|
2022-01-20 22:03:18 +03:00
|
|
|
|
2021-08-28 18:41:34 +03:00
|
|
|
<div class="container">
|
2021-10-04 11:40:53 +03:00
|
|
|
{{ template "post-form" .FormData }}
|
2022-01-20 22:03:18 +03:00
|
|
|
|
2022-01-20 21:30:51 +03:00
|
|
|
<div id="" class="row row-cols-auto gy-4 mb-4 justify-content-center">
|
2021-09-10 02:17:45 +03:00
|
|
|
{{ range $Post := .Threads }}
|
2022-01-30 15:09:55 +03:00
|
|
|
{{ template "thread-card" $Post }}
|
2021-09-10 02:17:45 +03:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col col-12">
|
|
|
|
<nav aria-label="Page navigation">
|
|
|
|
<ul id="pagesList" class="pagination justify-content-center">
|
|
|
|
{{ $ActivePage := .Page }}
|
|
|
|
{{ range $i := Iterate .PagesCount }}
|
2022-01-20 22:03:18 +03:00
|
|
|
<li class="page-item {{ if (eq $i $ActivePage) }} active {{ end }}">
|
|
|
|
<a class="page-link" href="/?page={{ $i }}">{{ $i }}</a>
|
|
|
|
</li>
|
2021-09-10 02:17:45 +03:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2021-08-28 18:41:34 +03:00
|
|
|
</div>
|
2021-08-30 23:29:51 +03:00
|
|
|
</div>
|
2021-10-14 11:43:32 +03:00
|
|
|
|
|
|
|
{{ template "footer" }}
|
2021-08-28 17:34:58 +03:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|