mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 22:32:33 +03:00
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
{{$FirstPost:= index . 0}}
|
|
|
|
<html lang="en">
|
|
<head>
|
|
{{ template "static" }}
|
|
{{ template "meta" $FirstPost }}
|
|
</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> |