micrach/templates/pages/index.html

39 lines
951 B
HTML
Raw Normal View History

2021-10-16 14:36:52 +03:00
<!DOCTYPE html>
2021-08-28 17:34:58 +03:00
<html lang="en">
2021-08-28 17:34:58 +03:00
<head>
2021-09-05 15:38:08 +03:00
{{ template "static" }}
<link href="/static/styles/index.css" rel="stylesheet">
{{ template "meta-tags-static" }}
2021-08-28 17:34:58 +03:00
</head>
<body>
2022-01-28 02:44:35 +03:00
{{ template "header" }}
<div class="container">
{{ template "post-form" .FormData }}
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 }}
<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>
</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>