lessmore/templates/components/post.html

38 lines
979 B
HTML
Raw Normal View History

2021-03-25 18:11:00 +03:00
{{ define "post" }}
2021-03-25 18:25:40 +03:00
<!--
Post component.
How to use:
{ template "post" .Posts[0] }
-->
2021-03-25 18:11:00 +03:00
2021-03-26 11:11:14 +03:00
<div
id="{{ .MsgID }}"
class="card container dynamic-post dynamic-opacity-95 p-3 mb-3">
2021-03-25 18:11:00 +03:00
<div class="card-body p-3">
<h3 class="card-title">
<a class="dynamic-post-title" href="/ssr#{{ .TopicID }}">{{ .Subg }}</a>
</h3>
<div class="card-subtitle text-white-50">
<p>
[<a href="/ssr#{{ .Echo }}"
title="Go to {{ .Echo }} echo">{{ .Echo }}</a>]
{{ .Date }}
@<a
title="{{ .Author }} posts"
2021-03-26 11:11:14 +03:00
href="#/author/{{ .Author }}">{{ .Author }}</a> ->
2021-03-25 18:11:00 +03:00
{{ if .Repto }}<a href="/ssr#{{.Repto}}">{{ .To }}</a>
{{ else }}{{ .To }}{{ end }}
</p>
</div>
<div class="card-text dynamic-post-text">
{{ .Message }}
</div>
</div>
<div class="card-footer text-white-50">
2021-03-26 11:11:14 +03:00
[<a href="#{{ .MsgID }}">#</a>] [<a href="/ssr#{{ .MsgID }}">reply</a>]
2021-03-25 18:11:00 +03:00
</div>
</div>
{{ end }}