1 {{template "header.tmpl"}}
2 {{template "navigation.tmpl" .NavbarData}}
3 <div class="page-title"> Notifications </div>
5 {{range .Notifications}}
6 <div class="notification-container {{if .Pleroma}}{{if not .Pleroma.IsSeen}}unread{{end}}{{end}}">
7 {{if eq .Type "follow"}}
8 <div class="notification-follow-container">
9 <a href="/user/{{.Account.ID}}" >
10 <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
14 <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
15 <span class="icon dripicons-user-group"></span>
18 <div class="notification-follow-uname">
24 {{else if eq .Type "mention"}}
25 {{template "status" .Status}}
27 {{else if eq .Type "reblog"}}
28 <div class="notification-retweet-container">
29 <a href="/user/{{.Account.ID}}" >
30 <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
34 <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
35 <span class="icon dripicons-retweet retweeted"></span>
38 {{template "status" .Status}}
42 {{else if eq .Type "favourite"}}
43 <div class="notification-like-container">
44 <a href="/user/{{.Account.ID}}" >
45 <img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
49 <span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
50 <span class="icon dripicons-star liked"></span>
53 {{template "status" .Status}}
60 <div class="pagination">
62 <a href="{{.NextLink}}">next</a>
65 {{template "footer.tmpl"}}