2022-01-31 19:56:21 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
{{ template "static" }}
|
2022-02-28 13:33:32 +03:00
|
|
|
<link href="/static/styles/index.css" rel="stylesheet">
|
2022-01-31 19:56:21 +03:00
|
|
|
{{ template "meta-tags-static" }}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
{{ template "header" }}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
{{ template "post-form" .FormData }}
|
|
|
|
|
|
|
|
<div id="" class="row row-cols-auto gy-4 mb-4 justify-content-center">
|
|
|
|
{{ range $Post := .Threads }}
|
|
|
|
{{ template "thread-card" $Post }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ template "pagiantion" .Pagination }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ template "footer" }}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|