{{ define "title" }}notifications{{ end }} {{ define "content" }}

Notifications

{{ i "settings" "w-4 h-4" }} preferences
{{if .Notifications}}
{{range .Notifications}} {{template "notifications/fragments/item" .}} {{end}}
{{else}}
{{ i "bell-off" "w-16 h-16" }}

No notifications

When you receive notifications, they'll appear here.

{{end}} {{ template "pagination" . }} {{ end }} {{ define "pagination" }}
{{ if gt .Page.Offset 0 }} {{ $prev := .Page.Previous }} {{ i "chevron-left" "w-4 h-4" }} previous {{ else }}
{{ end }} {{ $next := .Page.Next }} {{ if lt $next.Offset .Total }} {{ $next := .Page.Next }} next {{ i "chevron-right" "w-4 h-4" }} {{ end }}
{{ end }}