1 <div id="status-{{if .Reblog}}{{.Reblog.ID}}{{else}}{{.ID}}{{end}}" class="status-container-container">
3 <div class="retweet-info">
4 <a href="/user/{{.Account.ID}}" >
5 <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
7 <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
8 <span class="icon dripicons-retweet retweeted"></span>
11 {{template "status" .Reblog}}
14 <div class="status-container">
16 {{if not .HideAccountInfo}}
17 <a href="/user/{{.Account.ID}}" >
18 <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
23 {{if not .HideAccountInfo}}
24 <div class="status-name">
25 <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
26 <a href="/user/{{.Account.ID}}" >
27 <span class="status-uname"> {{.Account.Acct}} </span>
31 <div class="status-reply-container">
33 <span class="icon dripicons-forward"></span>
34 <a class="status-reply-to" href="{{if not .ShowReplies}}/thread/{{.InReplyToID}}{{end}}#status-{{.InReplyToID}}"> reply to {{.Pleroma.InReplyToAccountAcct}} </a>
35 {{if index .ReplyMap .ID}} <span class="status-reply-info-divider"> - </span> {{end}}
38 {{if index .ReplyMap .ID}} <span class="status-reply-text"> replies: </span> {{end}}
39 {{range index .ReplyMap .ID}}
40 <a class="status-reply" href="#status-{{.ID}}">#{{.Number}}</a>
44 <div class="status-content"> {{StatusContentFilter .SpoilerText .Content .Emojis .Mentions}} </div>
45 <div class="status-media-container">
46 {{range .MediaAttachments}}
47 {{if eq .Type "image"}}
48 <a href="{{.URL}}" target="_blank">
49 <img class="status-image" src="{{.URL}}" alt="status-image" />
51 {{else if eq .Type "audio"}}
52 <audio class="status-audio" controls preload="none">
53 <source src="{{.URL}}">
54 <p> Your browser doesn't support HTML5 audio </p>
56 {{else if eq .Type "video"}}
57 <video class="status-video" controls preload="none">
58 <source src="{{.URL}}">
59 <p> Your browser doesn't support HTML5 video </p>
62 <a href="{{.URL}}" target="_blank"> attachment </a>
66 <div class="status-action">
67 <a class="status-you" href="/thread/{{.ID}}?reply=true#status-{{.ID}}" title="reply">
68 <span class="icon dripicons-reply"></span>
69 <span> {{DisplayInteractionCount .RepliesCount}} </span>
72 <a class="status-retweet" href="/unretweet/{{.ID}}" title="undo repost">
73 <span class="icon dripicons-retweet retweeted"></span>
74 <span> {{DisplayInteractionCount .ReblogsCount}} </span>
77 <a class="status-retweet" href="/retweet/{{.ID}}" title="repost">
78 <span class="icon dripicons-retweet"></span>
79 <span> {{DisplayInteractionCount .ReblogsCount}} </span>
83 <a class="status-like" href="/unlike/{{.ID}}" title="unlike">
84 <span class="icon dripicons-star liked"></span>
85 <span> {{DisplayInteractionCount .FavouritesCount}} </span>
88 <a class="status-like" href="/like/{{.ID}}" title="like">
89 <span class="icon dripicons-star"></span>
90 <span> {{DisplayInteractionCount .FavouritesCount}} </span>
93 <a class="status-time" href="/thread/{{.ID}}#status-{{.ID}}">
94 <time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{.CreatedAt}}"> {{TimeSince .CreatedAt}} </time>