bloat/templates/notification.tmpl

72 lines
2.0 KiB
Cheetah
Raw Normal View History

2019-12-15 17:37:58 +00:00
{{template "header.tmpl"}}
{{template "navigation.tmpl" .NavbarData}}
<div class="page-title"> Notifications </div>
{{range .Notifications}}
<div class="notification-container {{if .Pleroma}}{{if not .Pleroma.IsSeen}}unread{{end}}{{end}}">
{{if eq .Type "follow"}}
<div class="notification-follow-container">
2019-12-22 03:43:25 +00:00
<div class="status-profile-img-container">
<a class="img-link" href="/user/{{.Account.ID}}" >
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
</a>
</div>
2019-12-15 17:37:58 +00:00
<div>
<div>
2019-12-21 05:48:06 +00:00
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
2019-12-22 19:43:03 +00:00
<i class="fa fa-user-plus"></i>
2019-12-15 17:37:58 +00:00
followed you
</div>
<div class="notification-follow-uname">
@{{.Account.Acct}}
</div>
</div>
</div>
{{else if eq .Type "mention"}}
{{template "status" .Status}}
{{else if eq .Type "reblog"}}
<div class="notification-retweet-container">
2019-12-22 03:43:25 +00:00
<div class="status-profile-img-container">
<a class="img-link" href="/user/{{.Account.ID}}" >
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
</a>
</div>
2019-12-15 17:37:58 +00:00
<div>
<div>
2019-12-21 05:48:06 +00:00
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
2019-12-22 19:43:03 +00:00
<i class="fa fa-retweet retweeted"></i>
2019-12-15 17:37:58 +00:00
retweeted your post
</div>
{{template "status" .Status}}
</div>
</div>
{{else if eq .Type "favourite"}}
<div class="notification-like-container">
2019-12-22 03:43:25 +00:00
<div class="status-profile-img-container">
<a class="img-link" href="/user/{{.Account.ID}}" >
<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
</a>
</div>
2019-12-15 17:37:58 +00:00
<div>
<div>
2019-12-21 05:48:06 +00:00
<span class="status-dname"> {{EmojiFilter .Account.DisplayName .Account.Emojis}} </span>
2019-12-22 19:43:03 +00:00
<i class="fa fa-star liked"></i>
2019-12-15 17:37:58 +00:00
liked your post
</div>
{{template "status" .Status}}
</div>
</div>
{{end}}
</div>
{{end}}
<div class="pagination">
{{if .HasNext}}
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
{{template "footer.tmpl"}}