mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
16ddad36b2
* fix css indentation * profile styling update * update status styling to match profile * empty header fix * generate random avatars for thread views * appease the linter gods * upgrade deps * turn profile accent into border + $bg background * upgrade deps * small accessibility tweaks * general redesign, clearer css variables * configure instance.Version for testrig * footer styling * add sublte borders to box-shadow for separation * accessible blues, other tweaks * background bg_accent * fix viewport * change client entry buttons to links * cw button styling * status display+username spacing * small thread view tweaks * color tweaks for accessible contrasts * use Noto Sans * biiit less dark bg * .info contrast, border Co-authored-by: f0x <f0x@cthu.lu>
38 lines
1.7 KiB
Cheetah
38 lines
1.7 KiB
Cheetah
<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.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="button 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>
|
|
<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> |