aboutsummaryrefslogtreecommitdiff
path: root/templates/status.tmpl
blob: 47ff6e4bf2e520ce5799af2003bff30f3539b3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<div class="status-container">
	<div>
		<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
	</div>
	<div class="status"> 
		<div class="status-name">
			<span class="status-dname"> {{WithEmojis .Account.DisplayName .Account.Emojis}} </span> 
			<span class="status-uname"> {{.Account.Acct}} </span>
		</div>
		<div class="status-content"> {{WithEmojis .Content .Emojis}} </div>
		<div class="status-action"> 
			<a class="status-you" href="/thread/{{.ID}}?reply=true" title="reply"> 
				<span class="icon dripicons-reply"></span> 
				<span> {{DisplayInteractionCount .RepliesCount}} </span>
			</a>
			{{if .Reblogged}}
			<a class="status-retweet" href="/unretweet/{{.ID}}" title="undo repost"> 
				<span class="icon dripicons-retweet retweeted"></span> 
				<span> {{DisplayInteractionCount .ReblogsCount}} </span>
			</a>
			{{else}}
			<a class="status-retweet" href="/retweet/{{.ID}}" title="repost"> 
				<span class="icon dripicons-retweet"></span> 
				<span> {{DisplayInteractionCount .ReblogsCount}} </span>
			</a>
			{{end}}
			{{if .Favourited}}
			<a class="status-like" href="/unlike/{{.ID}}" title="unlike"> 
				<span class="icon dripicons-star liked"></span> 
				<span> {{DisplayInteractionCount .FavouritesCount}} </span>
			</a>
			{{else}}
			<a class="status-like" href="/like/{{.ID}}" title="like"> 
				<span class="icon dripicons-star"></span> 
				<span> {{DisplayInteractionCount .FavouritesCount}} </span>
			</a>
			{{end}}
			<a class="status-time" href="/thread/{{.ID}}"> 
				<time datetime="{{FormatTimeRFC3339 .CreatedAt}}" title="{{.CreatedAt}}"> {{TimeSince .CreatedAt}} </time> 
			</a>
		</div>
	</div>
</div>