2021-09-05 00:36:55 +03:00
|
|
|
{{$FirstPost:= index . 0}}
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2021-09-05 14:36:10 +03:00
|
|
|
{{ template "static" }}
|
|
|
|
{{ template "meta" $FirstPost }}
|
2021-09-05 00:36:55 +03:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1 class="display-1 text-center">Welcome to Micrach</h1>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<form class="row row-cols-auto gy-4" action="/{{$FirstPost.ID}}" method="POST" enctype="multipart/form-data">
|
|
|
|
<input class="form-control" id="postTitle" placeholder="Title" name="title">
|
|
|
|
<textarea class="form-control" id="postText" rows="3" placeholder="Text" name="text"></textarea>
|
|
|
|
<input class="form-control" type="file" id="formFileMultiple" multiple name="files">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<div class="row row-cols-auto gy-4">
|
|
|
|
{{range $Post := .}}
|
|
|
|
<div class="col col-sm-6 col-md-4 col-lg-3">
|
|
|
|
<div class="card">
|
|
|
|
|
|
|
|
{{ $length := len $Post.Files }} {{ if gt $length 0 }}
|
|
|
|
{{$FirstFile := index $Post.Files 0}}
|
|
|
|
<img
|
|
|
|
src="{{$FirstFile.Name}}"
|
|
|
|
class="card-img-top"
|
|
|
|
alt="Uploaded picture"
|
|
|
|
>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">{{$Post.Title}}</h5>
|
|
|
|
<p class="card-text">{{$Post.Text}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|