mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:18:52 +00:00
026674bc2c
* Webviews for status threads * fix up templates * add ForkAwesome and gotosocial-styling into repo * clean up gotosocial-styling, old styling * update CONTRIBUTING with new css building, and nodemon recommendation * update Dockerfile with new css bundling * those weren't supposed to make it in * upgrade gotosocial-styling deps * update authorize template with main wrapper * update css pipeline * abstract status from thread to avoid copy-pasting * basic CW implementation * fix PR review suggestions * fix no-image-desc icon alignment * remove template loading println * remove println * remove changes to testmodels * reset changes to testmodels
36 lines
No EOL
1.6 KiB
Cheetah
36 lines
No EOL
1.6 KiB
Cheetah
<a href="{{.Account.URL}}" class="avatar"><img src="{{.Account.Avatar}}"></a>
|
|
<a href="{{.Account.URL}}" class="displayname">{{if .Account.DisplayName}}{{.Account.DisplayName}}{{else}}{{.Account.Username}}{{end}}</a>
|
|
<a href="{{.Account.URL}}" class="username">@{{.Account.Username}}</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>{{.SpoilerText}}</span><label class="spoiler-label" for="hideSpoiler-{{.ID}}">Toggle visibility</label>
|
|
</div>
|
|
{{end}}
|
|
<div class="content">
|
|
{{.Content |noescape}}
|
|
</div>
|
|
</div>
|
|
{{with .MediaAttachments}}
|
|
<div class="media {{(len .) | oddOrEven }}{{if eq (len .) 1}} single{{end}}{{if eq (len .) 2}} double{{end}}">
|
|
{{range .}}
|
|
<a href="{{.URL}}" target="_blank" title="{{.Description}}">
|
|
{{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}}
|
|
<img src="{{.PreviewURL}}" alt="{{.Description}}"/>
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
<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> |