2021-09-05 14:36:10 +03:00
|
|
|
{{ define "static" }}
|
|
|
|
<link
|
|
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"
|
|
|
|
rel="stylesheet"
|
|
|
|
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We"
|
|
|
|
crossorigin="anonymous"
|
|
|
|
>
|
|
|
|
<script
|
|
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
|
|
|
|
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
|
|
|
|
crossorigin="anonymous">
|
|
|
|
</script>
|
|
|
|
<link rel="icon" href="/static/favicon.ico"/>
|
2021-09-08 22:34:10 +03:00
|
|
|
<link
|
|
|
|
href="/static/post-form.css"
|
|
|
|
rel="stylesheet"
|
|
|
|
>
|
2021-09-05 14:36:10 +03:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "meta" }}
|
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<!-- Primary Meta Tags -->
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="title" content="{{ .Title }}">
|
|
|
|
<meta name="description" content="{{ .Text }}">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:url" content="https://micrach.igonin.dev/{{ .ID }}">
|
|
|
|
<meta property="og:title" content="{{ .Title }}">
|
|
|
|
<meta property="og:description" content="{{ .Text }}">
|
|
|
|
<meta property="og:image" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
|
|
|
|
|
|
|
<!-- Twitter -->
|
|
|
|
<meta property="twitter:card" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
|
|
|
<meta property="twitter:url" content="https://micrach.igonin.dev/{{ .ID }}">
|
|
|
|
<meta property="twitter:title" content="{{ .Title }}">
|
|
|
|
<meta property="twitter:description" content="{{ .Text }}">
|
|
|
|
<meta property="twitter:image" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
2021-09-05 15:38:08 +03:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "static-meta" }}
|
|
|
|
<title>Micrach</title>
|
|
|
|
<!-- Primary Meta Tags -->
|
|
|
|
<meta charset="UTF-8"/>
|
|
|
|
<meta name="title" content="Micrach">
|
|
|
|
<meta name="description" content="Single board imageboard.">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:url" content="https://micrach.igonin.dev/">
|
|
|
|
<meta property="og:title" content="Micrach">
|
|
|
|
<meta property="og:description" content="Single board imageboard.">
|
|
|
|
<meta property="og:image" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
|
|
|
|
|
|
|
<!-- Twitter -->
|
|
|
|
<meta property="twitter:card" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
|
|
|
<meta property="twitter:url" content="https://micrach.igonin.dev/">
|
|
|
|
<meta property="twitter:title" content="Micrach">
|
|
|
|
<meta property="twitter:description" content="Single board imageboard.">
|
|
|
|
<meta property="twitter:image" content="https://memepedia.ru/wp-content/uploads/2018/03/ebanyy-rot-etogo-kazino.png">
|
2021-09-08 22:34:10 +03:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "post-form" }}
|
|
|
|
<div class="col col-12">
|
2021-10-04 11:40:53 +03:00
|
|
|
{{ if eq .FirstPostID 0 }}
|
|
|
|
<form id="postForm" action="/" method="POST" enctype="multipart/form-data">
|
|
|
|
{{ else }}
|
|
|
|
<form id="postForm" action="/{{ .FirstPostID }}" method="POST" enctype="multipart/form-data">
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if eq .FirstPostID 0 }}
|
2021-09-12 00:14:31 +03:00
|
|
|
<input class="form-control" id="postTitle" placeholder="Title" name="title">
|
|
|
|
{{ end }}
|
2021-09-08 22:34:10 +03:00
|
|
|
<textarea class="form-control" id="postText" rows="5" placeholder="Text" name="text"></textarea>
|
|
|
|
<input class="form-control" type="file" id="postFiles" multiple name="files">
|
2021-09-10 17:08:28 +03:00
|
|
|
|
2021-10-04 11:41:08 +03:00
|
|
|
<img src="/captcha/{{ .CaptchaID }}" alt="Captcha">
|
|
|
|
|
2021-09-10 17:08:28 +03:00
|
|
|
<div class="row">
|
2021-10-04 11:40:53 +03:00
|
|
|
{{ if ne .FirstPostID 0 }}
|
2021-09-10 17:08:28 +03:00
|
|
|
<div class="col">
|
|
|
|
<input class="form-check-input" type="checkbox" value="" id="postSage" name="sage">
|
|
|
|
<label class="form-check-label" for="postSage">
|
|
|
|
Sage
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<div class="col text-end">
|
|
|
|
<button class="col btn btn-outline-primary" type="submit" >
|
2021-10-04 11:40:53 +03:00
|
|
|
{{ if ne .FirstPostID 0 }}
|
2021-09-10 17:08:28 +03:00
|
|
|
Send
|
|
|
|
{{ else }}
|
|
|
|
Create thread
|
|
|
|
{{ end }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-08 22:34:10 +03:00
|
|
|
</form>
|
|
|
|
</div>
|
2021-09-05 14:36:10 +03:00
|
|
|
{{ end }}
|