micrach/templates/index.html

49 lines
1.4 KiB
HTML
Raw Normal View History

2021-08-28 17:34:58 +03:00
<html lang="en">
<head>
2021-09-05 15:38:08 +03:00
{{ template "static" }}
<link
href="/static/index.css"
rel="stylesheet"
>
{{ template "static-meta" }}
2021-08-28 17:34:58 +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="/" 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">
2021-08-31 19:18:47 +03:00
{{ $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}}
2021-08-31 22:51:31 +03:00
<div class="card-body">
<h5 class="card-title">{{$Post.Title}}</h5>
<p class="card-text">{{$Post.Text}}</p>
<a href="/{{$Post.ID}}" class="btn btn-outline-primary">Open</a>
2021-08-30 23:29:51 +03:00
</div>
</div>
</div>
2021-08-30 23:29:51 +03:00
{{end}}
</div>
2021-08-30 23:29:51 +03:00
</div>
2021-08-28 17:34:58 +03:00
</body>
</html>