2020-01-05 18:55:37 +00:00
|
|
|
<div id="status-{{.ID}}" class="status-container-container">
|
2019-12-14 10:57:14 +00:00
|
|
|
{{if .Reblog}}
|
|
|
|
<div class="retweet-info">
|
2019-12-22 03:43:25 +00:00
|
|
|
<a class="img-link" href="/user/{{.Account.ID}}">
|
2019-12-22 16:27:49 +00:00
|
|
|
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
|
2019-12-20 18:30:20 +00:00
|
|
|
</a>
|
2019-12-21 05:48:06 +00:00
|
|
|
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "retweeted" .DarkMode}}" alt="retweeted" />
|
2019-12-14 17:18:04 +00:00
|
|
|
retweeted
|
2019-12-13 18:08:26 +00:00
|
|
|
</div>
|
2019-12-14 10:57:14 +00:00
|
|
|
{{template "status" .Reblog}}
|
|
|
|
{{else}}
|
|
|
|
{{block "status" .}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<div class="status-container status-{{.ID}}" data-id="{{.ID}}">
|
2019-12-22 03:43:25 +00:00
|
|
|
{{if not .HideAccountInfo}}
|
|
|
|
<div class="status-profile-img-container">
|
|
|
|
<a class="img-link" href="/user/{{.Account.ID}}">
|
2019-12-22 16:27:49 +00:00
|
|
|
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="avatar" />
|
2019-12-20 18:30:20 +00:00
|
|
|
</a>
|
2019-12-13 18:08:26 +00:00
|
|
|
</div>
|
2019-12-22 03:43:25 +00:00
|
|
|
{{end}}
|
2019-12-14 10:57:14 +00:00
|
|
|
<div class="status">
|
2019-12-18 22:14:02 +00:00
|
|
|
{{if not .HideAccountInfo}}
|
2019-12-14 10:57:14 +00:00
|
|
|
<div class="status-name">
|
2019-12-21 05:48:06 +00:00
|
|
|
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
|
2019-12-20 18:30:20 +00:00
|
|
|
<a href="/user/{{.Account.ID}}" >
|
|
|
|
<span class="status-uname"> {{.Account.Acct}} </span>
|
|
|
|
</a>
|
2019-12-22 03:43:25 +00:00
|
|
|
<a class="status-visibility">
|
2019-12-21 13:26:31 +00:00
|
|
|
{{if eq .Visibility "public"}}
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "globe" .DarkMode}}" alt="Public" title="Public" />
|
2019-12-21 13:26:31 +00:00
|
|
|
{{else if eq .Visibility "unlisted"}}
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "unlock-alt" .DarkMode}}" alt="Unlisted" title="Unlisted" />
|
2019-12-21 13:26:31 +00:00
|
|
|
{{else if eq .Visibility "private"}}
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "lock" .DarkMode}}" alt="Private" title="Private" />
|
2019-12-21 13:26:31 +00:00
|
|
|
{{else if eq .Visibility "direct"}}
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "envelope" .DarkMode}}" alt="Direct" title="Direct" />
|
2019-12-21 13:26:31 +00:00
|
|
|
{{end}}
|
|
|
|
</a>
|
2019-12-22 03:43:25 +00:00
|
|
|
<a class="remote-link" href="{{.URL}}" target="_blank" title="source">
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "link" .DarkMode}}" alt="source" />
|
2019-12-22 03:43:25 +00:00
|
|
|
</a>
|
2019-12-14 10:57:14 +00:00
|
|
|
</div>
|
2019-12-15 17:37:58 +00:00
|
|
|
{{end}}
|
2019-12-18 22:14:02 +00:00
|
|
|
<div class="status-reply-container">
|
|
|
|
{{if .InReplyToID}}
|
2020-01-11 10:51:33 +00:00
|
|
|
<div class="status-reply-to">
|
|
|
|
<a class="status-reply-to-link" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}">
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "mail-forward" .DarkMode}}" alt="reply to" /> reply to {{.Pleroma.InReplyToAccountAcct}}
|
2020-01-11 10:51:33 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2019-12-18 22:14:02 +00:00
|
|
|
{{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}
|
|
|
|
{{end}}
|
|
|
|
{{if .ShowReplies}}
|
|
|
|
{{if index .ReplyMap .ID}} <span class="status-reply-text"> replies: </span> {{end}}
|
|
|
|
{{range index .ReplyMap .ID}}
|
2020-01-11 10:51:33 +00:00
|
|
|
<div class="status-reply">
|
|
|
|
<a class="status-reply-link" href="#status-{{.ID}}">#{{.Number}}</a>
|
|
|
|
</div>
|
2019-12-18 22:14:02 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2019-12-21 07:22:21 +00:00
|
|
|
<div class="status-content"> {{StatusContentFilter .SpoilerText .Content .Emojis .Mentions}} </div>
|
2019-12-14 10:57:14 +00:00
|
|
|
<div class="status-media-container">
|
|
|
|
{{range .MediaAttachments}}
|
|
|
|
{{if eq .Type "image"}}
|
2019-12-22 03:43:25 +00:00
|
|
|
<a class="img-link" href="{{.URL}}" target="_blank">
|
2019-12-14 10:57:14 +00:00
|
|
|
<img class="status-image" src="{{.URL}}" alt="status-image" />
|
2019-12-31 11:00:21 +00:00
|
|
|
{{if (and $.MaskNSFW $.Sensitive)}}
|
2019-12-22 04:25:56 +00:00
|
|
|
<div class="status-nsfw-overlay"></div>
|
|
|
|
{{end}}
|
2019-12-13 18:08:26 +00:00
|
|
|
</a>
|
2019-12-14 10:57:14 +00:00
|
|
|
{{else if eq .Type "audio"}}
|
|
|
|
<audio class="status-audio" controls preload="none">
|
|
|
|
<source src="{{.URL}}">
|
|
|
|
<p> Your browser doesn't support HTML5 audio </p>
|
|
|
|
</audio>
|
|
|
|
{{else if eq .Type "video"}}
|
2019-12-22 04:25:56 +00:00
|
|
|
<div class="status-video-container">
|
|
|
|
<video class="status-video" controls preload="none">
|
|
|
|
<source src="{{.URL}}">
|
|
|
|
<p> Your browser doesn't support HTML5 video </p>
|
|
|
|
</video>
|
2019-12-31 11:00:21 +00:00
|
|
|
{{if (and $.MaskNSFW $.Sensitive)}}
|
2019-12-22 04:25:56 +00:00
|
|
|
<div class="status-nsfw-overlay"></div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2019-12-13 18:08:26 +00:00
|
|
|
{{else}}
|
2019-12-14 10:57:14 +00:00
|
|
|
<a href="{{.URL}}" target="_blank"> attachment </a>
|
2019-12-13 18:08:26 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2019-12-14 10:57:14 +00:00
|
|
|
</div>
|
2019-12-26 09:11:24 +00:00
|
|
|
<div class="status-action-container">
|
|
|
|
<div class="status-action">
|
|
|
|
<a class="status-you" href="/thread/{{.ID}}?reply=true#status-{{.ID}}" title="reply">
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "reply" .DarkMode}}" alt="reply" />
|
2019-12-26 09:11:24 +00:00
|
|
|
</a>
|
2020-01-08 18:16:06 +00:00
|
|
|
<a class="status-reply-count" href="/thread/{{.ID}}#status-{{.ID}}" {{if .ThreadInNewTab}}target="_blank"{{end}}>
|
|
|
|
{{DisplayInteractionCount .RepliesCount}}
|
2019-12-26 09:11:24 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="status-action">
|
|
|
|
{{if or (eq .Visibility "private") (eq .Visibility "direct")}}
|
|
|
|
<a class="status-retweet" title="this status cannot be retweeted">
|
2020-01-12 17:16:57 +00:00
|
|
|
<img class="icon" src="{{GetIcon "retweet" .DarkMode}}" alt="retweet" />
|
2019-12-26 09:11:24 +00:00
|
|
|
</a>
|
|
|
|
{{else}}
|
2019-12-21 13:26:31 +00:00
|
|
|
{{if .Reblogged}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<form class="status-retweet" data-action="unretweet" action="/unretweet/{{.ID}}" method="post">
|
2020-01-05 18:55:37 +00:00
|
|
|
<input type="hidden" name="retweeted_by_id" value="{{.RetweetedByID}}" />
|
2020-01-12 17:16:57 +00:00
|
|
|
<input type="image" src="{{GetIcon "retweeted" .DarkMode}}" alt="undo retweet" class="icon" title="undo retweet">
|
2020-01-04 18:56:47 +00:00
|
|
|
</form>
|
2019-12-21 13:26:31 +00:00
|
|
|
{{else}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<form class="status-retweet" data-action="retweet" action="/retweet/{{.ID}}" method="post">
|
2020-01-05 18:55:37 +00:00
|
|
|
<input type="hidden" name="retweeted_by_id" value="{{.RetweetedByID}}" />
|
2020-01-12 17:16:57 +00:00
|
|
|
<input type="image" src="{{GetIcon "retweet" .DarkMode}}" alt="retweet" class="icon" title="retweet">
|
2020-01-04 18:56:47 +00:00
|
|
|
</form>
|
2019-12-26 09:11:24 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<a class="status-retweet-count" href="/retweetedby/{{.ID}}" title="click to see the the list">
|
|
|
|
{{DisplayInteractionCount .ReblogsCount}}
|
2019-12-21 13:26:31 +00:00
|
|
|
</a>
|
2019-12-26 09:11:24 +00:00
|
|
|
</div>
|
|
|
|
<div class="status-action">
|
|
|
|
{{if .Favourited}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<form class="status-like" data-action="unlike" action="/unlike/{{.ID}}" method="post">
|
2020-01-05 18:55:37 +00:00
|
|
|
<input type="hidden" name="retweeted_by_id" value="{{.RetweetedByID}}" />
|
2020-01-12 17:16:57 +00:00
|
|
|
<input type="image" src="{{GetIcon "liked" .DarkMode}}" alt="unlike" class="icon" title="unlike">
|
2020-01-04 18:56:47 +00:00
|
|
|
</form>
|
2019-12-26 09:11:24 +00:00
|
|
|
{{else}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<form class="status-like" data-action="like" action="/like/{{.ID}}" method="post">
|
2020-01-05 18:55:37 +00:00
|
|
|
<input type="hidden" name="retweeted_by_id" value="{{.RetweetedByID}}" />
|
2020-01-12 17:16:57 +00:00
|
|
|
<input type="image" src="{{GetIcon "star-o" .DarkMode}}" alt="like" class="icon" title="like">
|
2020-01-04 18:56:47 +00:00
|
|
|
</form>
|
2019-12-21 13:26:31 +00:00
|
|
|
{{end}}
|
2020-01-08 18:16:06 +00:00
|
|
|
<a class="status-like-count" href="/likedby/{{.ID}}" title="click to see the the list">
|
|
|
|
{{DisplayInteractionCount .FavouritesCount}}
|
2019-12-26 09:11:24 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="status-action">
|
2020-01-11 07:19:48 +00:00
|
|
|
<a class="status-time" href="{{if not .ShowReplies}}/thread/{{.ID}}{{end}}#status-{{.ID}}" {{if .ThreadInNewTab}}target="_blank"{{end}}>
|
2020-01-10 04:05:01 +00:00
|
|
|
<time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{FormatTimeRFC822 .CreatedAt}}"> {{TimeSince .CreatedAt}} </time>
|
2019-12-26 09:11:24 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2019-12-14 10:57:14 +00:00
|
|
|
</div>
|
2019-12-13 18:08:26 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-12-14 10:57:14 +00:00
|
|
|
{{end}}
|
|
|
|
{{end}}
|
2019-12-13 18:08:26 +00:00
|
|
|
</div>
|