forked from mirrors/gotosocial
80663061d8
* start adding rss functionality * add gorilla/feeds dependency * first bash at building rss feed still needs work, this is an interim commit * tidy up a bit * add publicOnly option to GetAccountLastPosted * implement rss endpoint * fix test * add initial user docs for rss * update rss logo * docs update * add rssFeed to frontend * feed -> feed.rss * enableRSS * increase rss logo size a lil bit * add rss toggle * move emojify to text package * fiddle with rss feed formatting * add Text field to test statuses * move status to rss item to typeconverter * update bun schema for enablerss * simplify 304 checking * assume account not rss * update tests * update swagger docs * allow more characters in title, trim nicer * update last posted to be more consistent
56 lines
2.4 KiB
Cheetah
56 lines
2.4 KiB
Cheetah
{{ template "header.tmpl" .}}
|
|
<main>
|
|
<div class="profile">
|
|
<div class="headerimage">
|
|
{{ if .account.Header }}
|
|
<img
|
|
src="{{.account.Header}}"
|
|
alt="{{if .account.DisplayName}}{{.account.DisplayName}}{{else}}{{.account.Username}}{{end}}'s header"
|
|
/>
|
|
{{ end }}
|
|
</div>
|
|
<div class="basic">
|
|
<div id="profile-basic-filler2"></div>
|
|
<a href="{{.account.Avatar}}" class="avatar"><img src="{{.account.Avatar}}" alt="{{if .account.DisplayName}}{{.account.DisplayName}}{{else}}{{.account.Username}}{{end}}'s avatar"></a>
|
|
<div class="displayname">{{if .account.DisplayName}}{{emojify .account.Emojis (escape .account.DisplayName)}}{{else}}{{.account.Username}}{{end}}</div>
|
|
<div class="username"><span>@{{.account.Username}}</span><span>@{{.instance.AccountDomain}}</span></div>
|
|
</div>
|
|
<div class="detailed">
|
|
<div class="bio">
|
|
{{ if .account.Note }}{{emojify .account.Emojis (noescape .account.Note)}}{{else}}This GoToSocial user hasn't written a bio yet!{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="accountstats">
|
|
<div class="entry">Joined <b>{{.account.CreatedAt | timestampVague}}</b></div>
|
|
<div class="entry">Followed by <b>{{.account.FollowersCount}}</b></div>
|
|
<div class="entry">Following <b>{{.account.FollowingCount}}</b></div>
|
|
<div class="entry">Posted <b>{{.account.StatusesCount}}</b></div>
|
|
</div>
|
|
</div>
|
|
<h2 id="recent">
|
|
<span>Latest public toots</span>
|
|
{{ if .rssFeed }}
|
|
<a href="{{ .rssFeed }}"><img class="rsslogo" src="/assets/rss.svg" alt="The orange RSS logo."/></a>
|
|
{{ end }}
|
|
</h2>
|
|
{{ if not .statuses }}
|
|
<div data-nosnippet class="nothinghere">Nothing here!</div>
|
|
{{ else }}
|
|
<div class="thread">
|
|
{{ range .statuses }}
|
|
<div class="toot expanded">
|
|
{{ template "status.tmpl" .}}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
<div class="backnextlinks">
|
|
{{ if .show_back_to_top }}
|
|
<a href="/@{{ .account.Username }}">Back to top</a>
|
|
{{ end }}
|
|
{{ if .statuses_next }}
|
|
<a href="{{ .statuses_next }}" class="next">Show older</a>
|
|
{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ template "footer.tmpl" .}}
|