go-jamming/app/notifier/notification.html

34 lines
858 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Webmention {{ .Action }} from {{ .SourceDomain }}</title>
<style>
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 1em;
}
</style>
</head>
<body>
<h1>🥞 Webmention {{ .Action }} from {{ .SourceDomain }}</h1>
<p>Hi Admin, a webmention was received:</p>
<p>
<em>Source:</em> <a href="{{ .Source }}">{{ .Source }}</a><br/>
<em>Target:</em> <a href="{{ .Target }}">{{ .Target }}</a><br/>
<em>Content:</em> {{ .Content }}
</p>
<p>
{{ with .ApproveURL}}<a href="{{ . }}">✅ Accept!</a><br/>{{ end }}
{{ with .RejectURL }}<a href="{{ . }}">❌ Reject!</a>{{ end }}
</p>
<p>
Cheerio, your Go-Jammin' Thing! (<a href="{{ .AdminURL }}">Go to Admin Dashboard</a>)
</p>
</body>
</html>