aboutsummaryrefslogtreecommitdiff
path: root/templates/notification.tmpl
blob: 099f17eff633e7ef0c2b700895d5ffa56315bfc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{{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">
		<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
		<div>
			<div>
				<span class="status-dname"> {{WithEmojis .Account.DisplayName .Account.Emojis}} </span>  
				<span class="icon dripicons-user-group"></span> 
				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">
		<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
		<div>
			<div>
				<span class="status-dname"> {{WithEmojis .Account.DisplayName .Account.Emojis}} </span>  
				<span class="icon dripicons-retweet retweeted"></span> 
				retweeted your post
			</div>
			{{template "status" .Status}}
		</div>
	</div>

	{{else if eq .Type "favourite"}}
	<div class="notification-like-container">
		<img class="status-profile-img" src="{{.Account.AvatarStatic}}" alt="profile-avatar" />
		<div>
			<div>
				<span class="status-dname"> {{WithEmojis .Account.DisplayName .Account.Emojis}} </span>  
				<span class="icon dripicons-star liked"></span> 
				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"}}