1 {{template "header.tmpl"}}
2 {{template "navigation.tmpl" .NavbarData}}
3 <div class="page-title"> User </div>
5 <div class="user-info-container">
7 <div class="user-profile-img-container">
8 <a class="img-link" href="{{.User.AvatarStatic}}" target="_blank">
9 <img class="user-profile-img" src="{{.User.AvatarStatic}}" alt="profile-avatar" />
12 <div class="user-profile-details-container">
14 <span class="status-dname"> {{EmojiFilter .User.DisplayName .User.Emojis}} </span>
15 <span class="status-uname"> {{.User.Acct}} </span>
16 <a class="remote-link" href="{{.User.URL}}" target="_blank" title="remote profile">
17 <i class="fa fa-link"></i>
21 <span> {{if .User.Pleroma.Relationship.FollowedBy}} follows you - {{end}} </span>
22 {{if .User.Pleroma.Relationship.Following}}
23 <form class="d-inline" action="/unfollow/{{.User.ID}}" method="post">
24 <input type="submit" value="unfollow" class="btn-link">
27 {{if .User.Pleroma.Relationship.Requested}}
28 <form class="d-inline" action="/unfollow/{{.User.ID}}" method="post">
29 <input type="submit" value="cancel request" class="btn-link">
32 {{if not .User.Pleroma.Relationship.Following}}
33 <form class="d-inline" action="/follow/{{.User.ID}}" method="post">
34 <input type="submit" value="{{if .User.Pleroma.Relationship.Requested}}resend request{{else}}follow{{end}}" class="btn-link">
39 {{.User.StatusesCount}} statuses - {{.User.FollowingCount}} following - {{.User.FollowersCount}} followers
42 <div class="user-profile-decription">
49 {{template "status.tmpl" .}}
52 <div class="pagination">
54 <a href="{{.NextLink}}">next</a>
58 {{template "footer.tmpl"}}