mlmym/templates/post.html

131 lines
6.3 KiB
HTML
Raw Normal View History

2024-05-12 04:09:05 +00:00
{{- if and (ne .State.Op "vote_post") (ne .State.Op "save_post") -}}
2023-07-20 23:36:12 +00:00
<div class="post{{if .Post.Deleted}} deleted{{end}}{{ if .Post.FeaturedCommunity }} distinguished{{end}}{{if .Post.FeaturedLocal }} announcement{{end}}" id="p{{.Post.ID}}">
2024-05-12 04:09:05 +00:00
{{- if gt .Rank 0 }}
2023-06-30 19:41:35 +00:00
<div class="rank"> {{ .Rank }} </div>
2024-05-12 04:09:05 +00:00
{{- end }}
<div class="score">
{{- end }}
{{- if or (ne .State.Op "save_post") (eq .State.Op "vote_post") }}
{{- if .State.Session }}
2023-07-10 15:53:15 +00:00
<form class="link-btn {{ if lt .Rank 1 }}squish{{end}}{{ if eq .MyVote.String "1" }} like{{else if eq .MyVote.String "-1"}} dislike{{end}}" method="POST">
2023-06-30 19:41:35 +00:00
<input type="submit" name="vote" value="▲">
2024-05-12 04:09:05 +00:00
{{- if .MyVote.IsValid}}
2023-06-30 19:41:35 +00:00
<input type="hidden" name="undo" value="{{.MyVote.String}}">
{{ end}}
<input type="hidden" name="op" value="vote_post">
<input type="hidden" name="postid" value="{{.Post.ID }}">
<div>{{ .Counts.Score }}</div>
<input type="submit" name="vote" value="▼">
2023-06-30 19:41:35 +00:00
</form>
2024-05-12 04:09:05 +00:00
{{- else }}
<div style="margin-top: 19px;">{{ .Counts.Score }}</div>
2024-05-12 04:09:05 +00:00
{{- end }}
{{- end }}
{{- if and (ne .State.Op "vote_post") (ne .State.Op "save_post") }}
2023-06-30 19:41:35 +00:00
</div>
{{ if not .State.HideThumbnails }}
<div class="thumb">
2024-05-12 04:09:05 +00:00
<a class="url" href="{{ if .Post.URL.IsValid }}{{ .Post.URL }}{{ else }}/{{ .State.Host }}/post/{{ .Post.ID }}{{ end }}"
{{- if .State.LinksInNewWindow }} target="_blank" {{ end }}>
<div {{ if and .Post.NSFW (not (and .State.Community .State.Community.CommunityView.Community.NSFW))}}class="img-blur"{{end}}style="background-image: url({{thumbnail .Post}})"></div>
</a>
</div>
{{ end }}
2023-06-30 19:41:35 +00:00
<div class="entry">
2024-04-28 15:41:14 +00:00
<div class="title{{ if .Read}} visited{{end}}">
2024-05-12 04:09:05 +00:00
<a class="url" href="{{ if .Post.URL.IsValid }}{{ .Post.URL }}{{ else }}/{{ .State.Host }}/post/{{ .Post.ID }}{{ end }}"
{{- if .State.LinksInNewWindow }} target="_blank" {{ end }}>
{{ rmmarkdown .Post.Name }}
</a>
({{ domain . }})
2023-06-30 19:41:35 +00:00
</div>
2024-04-20 02:49:22 +00:00
<div class="expando-button{{ if and (not (and .Post.Body.IsValid .Post.Body.String )) (not (isImage .Post.URL.String)) (not (isYoutube .Post.URL.String)) }} hidden{{else if eq .Rank 0}} open{{ end }}"></div>
2023-06-30 19:41:35 +00:00
<div class="meta">
submitted
2023-12-17 01:09:35 +00:00
<span title="{{.Post.Published.Time}}">{{ humanize .Post.Published.Time -}}</span>
{{- if gt .Post.Updated.ValueOrZero.Time.Unix .Post.Published.Time.Unix -}}
* (last edited <span title="{{.Post.Updated.ValueOrZero.Time}}">{{ humanize .Post.Updated.ValueOrZero.Time }}</span>)
2023-06-30 19:41:35 +00:00
{{ end }}
by
2023-12-16 14:43:43 +00:00
<a class="submitter{{ if false}} admin{{end}}" href="/{{ .State.Host }}/u/{{ fullname .Creator }}">
{{- if .State.HideInstanceNames -}}
{{ .Creator.Name }}
{{- else -}}
{{ fullname .Creator }}
{{- end -}}
</a>
2023-06-30 19:41:35 +00:00
to
2023-09-03 16:48:04 +00:00
<a class="community" href="/{{ .State.Host }}/c/{{ fullcname .Community }}">
c/{{ if .State.HideInstanceNames -}}
{{ .Community.Name }}
{{ else -}}
{{ fullcname .Community }}
{{ end }}
</a>
2023-06-30 19:41:35 +00:00
</div>
<div class="buttons">
2024-05-12 04:09:05 +00:00
{{- if .Post.NSFW }}
<span class="nsfw">NSFW</span>{{end}}
2023-06-30 19:41:35 +00:00
<a href="/{{ .State.Host }}/post/{{ .Post.ID }}">{{ .Counts.Comments }} comments</a>
2023-07-28 21:00:58 +00:00
<a href="{{ .Post.ApID}}">fedilink</a>
2024-05-12 04:09:05 +00:00
{{- if .State.Session }}
2023-09-03 16:48:04 +00:00
<a href="/{{ .State.Host }}/post/{{ .Post.ID }}/block" rel="xhr" target="block{{ .Post.ID }}">block</a>
2024-05-12 04:09:05 +00:00
{{- end }}
2023-09-03 16:48:04 +00:00
<span class="blockpopup" name="block{{.Post.ID}}"></span>
2024-05-12 04:09:05 +00:00
{{- if and .State.Session (eq .State.Session.UserID .Post.CreatorID) }}
{{- if not .Post.Deleted }}<a href="/{{ .State.Host }}/post/{{ .Post.ID }}?edit">edit</a>{{end}}
2023-06-30 19:41:35 +00:00
<form class="link-btn" method="POST">
<input type="hidden" name="postid" value="{{.Post.ID }}">
<input type="hidden" name="op" value="delete_post">
2024-05-12 04:09:05 +00:00
{{- if .Post.Deleted }}
2023-06-30 19:41:35 +00:00
<input type="submit" value="undelete">
<input type="hidden" name="undo" value="1">
2024-05-12 04:09:05 +00:00
{{- else }}
2023-06-30 19:41:35 +00:00
<input type="submit" value="delete">
2024-05-12 04:09:05 +00:00
{{- end }}
2023-06-30 19:41:35 +00:00
</form>
2024-05-12 04:09:05 +00:00
{{- end}}
{{- end }}
{{- if or (ne .State.Op "vote_post") (eq .State.Op "save_post") }}
{{- if .State.Session }}
2023-07-05 14:20:07 +00:00
<form class="link-btn" method="POST">
<input type="hidden" name="postid" value="{{.Post.ID }}">
<input type="hidden" name="op" value="save_post">
2024-05-12 04:09:05 +00:00
{{- if .PostView.Saved }}
2023-07-05 14:20:07 +00:00
<input type="submit" name="submit" value="unsave">
2024-05-12 04:09:05 +00:00
{{- else }}
2023-07-05 14:20:07 +00:00
<input type="submit" name="submit" value="save">
2024-05-12 04:09:05 +00:00
{{- end }}
2023-07-05 14:20:07 +00:00
</form>
2024-05-12 04:09:05 +00:00
{{- end}}
{{- end }}
{{- if and (ne .State.Op "vote_post") (ne .State.Op "save_post") }}
{{- if .State.PostID }}
2023-07-10 15:53:15 +00:00
<a id="hidechildren" class="scripting" href="">hide all child comments</a>
2024-05-12 04:09:05 +00:00
{{- end }}
{{- if and .State.Site .State.Site.MyUser.IsValid (not .State.Site.MyUser.ValueOrZero.LocalUserView.LocalUser.ShowReadPosts) }}
2023-07-20 23:36:12 +00:00
<form class="link-btn" method="POST">
<input type="hidden" name="postid" value="{{.Post.ID }}">
<input type="hidden" name="op" value="read_post">
2024-05-12 04:09:05 +00:00
{{- if .Post.Deleted }}
2023-07-20 23:36:12 +00:00
<input type="submit" name="submit" value="mark unread">
2024-05-12 04:09:05 +00:00
{{- else }}
2023-07-20 23:36:12 +00:00
<input type="submit" name="submit" value="mark read">
2024-05-12 04:09:05 +00:00
{{- end }}
2023-07-20 23:36:12 +00:00
</form>
2024-05-12 04:09:05 +00:00
{{- end }}
2023-06-30 19:41:35 +00:00
</div>
<div class="expando{{ if eq .Rank 0 }} open{{ end}}">
2024-05-12 04:09:05 +00:00
{{- if (and .Post.Body.IsValid (ne .Post.Body.String "")) }}
2023-07-04 02:43:16 +00:00
<div class="md">{{ markdown .State.Host .Post.Body.String }}</div>
2024-05-12 04:09:05 +00:00
{{- end }}
{{- if isImage .Post.URL.String}}
<img class="image" loading="lazy" src="{{ .Post.URL }}">
2024-05-12 04:09:05 +00:00
{{- end }}
2023-07-04 02:43:16 +00:00
<div class="embed"></div>
2023-06-30 19:41:35 +00:00
</div>
</div>
2024-05-12 04:09:05 +00:00
<div class="clearleft"></div>
2023-06-30 19:41:35 +00:00
</div>
2024-05-12 04:09:05 +00:00
{{- end -}}