summaryrefslogtreecommitdiff
path: root/web/template/status.tmpl
blob: decad4764e3e1405ac699df37c5c776d5cdd5e47 (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
44
45
46
47
48
49
50
51
52
<div class="contentgrid">
	<a href="{{.Account.URL}}" class="avatar"><img src="{{.Account.Avatar}}" alt=""></a>
	<a href="{{.Account.URL}}" class="displayname">{{if .Account.DisplayName}}{{.Account.DisplayName}}{{else}}{{.Account.Username}}{{end}}</a>
	<a href="{{.Account.URL}}" class="username">@{{.Account.Acct}}</a>
	<div class="text">
		{{if .SpoilerText}}
		<input class="spoiler" id="hideSpoiler-{{.ID}}" type="checkbox" style="display: none" aria-hidden="true" checked="true" />
		<div class="spoiler">
			<span class="spoiler-text">{{.SpoilerText}}</span>
			<label class="button spoiler-label" for="hideSpoiler-{{.ID}}" tabindex="0">Toggle visibility</label>
		</div>
		{{end}}
		<div class="content">
			{{.Content |noescape}}
		</div>
	</div>
	{{with .MediaAttachments}}
	<div class="media photoswipe-gallery {{(len .) | oddOrEven }}{{if eq (len .) 1}} single{{end}}{{if eq (len .) 2}} double{{end}}">
		{{range .}}
		<div class="media-wrapper">
			{{if not .Description}}
			<div class="no-image-desc" aria-hidden="true" ><i class="fa fa-info-circle"></i><span>Missing image description</span></div>
			{{end}}	
			<input type="checkbox" id="sensitiveMedia-{{.ID}}" class="sensitive-checkbox hidden" {{if not $.Sensitive}}checked{{end}}/>
			<div class="sensitive">
				<div class="open">
					<label for="sensitiveMedia-{{.ID}}" class="button" role="button" tabindex="0">
						<i class="fa fa-eye-slash" title="Hide sensitive media"></i>
					</label>
				</div>
				<div class="closed" {{if .Description}}title="{{.Description}}"{{end}}>
					<label for="sensitiveMedia-{{.ID}}" class="button" role="button" tabindex="0">Show sensitive media</label>
				</div>
			</div>
			<a href="{{.URL}}" target="_blank" {{if .Description}}title="{{.Description}}"{{end}} data-pswp-width="{{.Meta.Original.Width}}px" data-pswp-height="{{.Meta.Original.Height}}px">
				<img src="{{.PreviewURL}}" {{if .Description}}alt="{{.Description}}"{{end}} data-blurhash="{{.Blurhash}}"/>
			</a>
		</div>
		{{end}}
	</div>
	{{end}}
</div>
<div class="info">
	<div id="date">{{.CreatedAt | timestamp}}</div>
	<div class="stats">
		<div id="visibility">{{.Visibility | visibilityIcon}}</div>
		<div id="replies"><i aria-label="Replies" class="fa fa-reply-all"></i> {{.RepliesCount}}</div>
		<div id="boosts"><i aria-label="Boosts" class="fa fa-retweet"></i> {{.ReblogsCount}}</div>
		<div id="favorites"><i aria-label="Favorites" class="fa fa-star"></i> {{.FavouritesCount}}</div>
	</div>
</div>
<a href="{{.URL}}" class="toot-link">View toot</a>