2022-01-31 19:56:21 +03:00
|
|
|
|
{{ $FirstPost:= index .Thread 0 }}
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
{{ template "static" }}
|
2022-02-28 13:33:32 +03:00
|
|
|
|
<link href="/static/styles/thread.css" rel="stylesheet">
|
|
|
|
|
<link href="/static/styles/post.css" rel="stylesheet">
|
2022-05-25 13:30:20 +03:00
|
|
|
|
<link href="/static/styles/footer.css" rel="stylesheet">
|
|
|
|
|
{{ template "meta-tags-dynamic" $FirstPost }}
|
2022-01-31 19:56:21 +03:00
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
{{ template "header" $FirstPost.Title }}
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
{{ template "post-form" .FormData }}
|
|
|
|
|
|
|
|
|
|
<div id="postsСontainer">
|
|
|
|
|
{{ range $Post := .Thread }}
|
|
|
|
|
{{ template "post" $Post }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{{ template "footer" }}
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|