-
Notifications
You must be signed in to change notification settings - Fork 24
/
note.templ
58 lines (53 loc) · 1.17 KB
/
note.templ
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
package main
import "html/template"
type NotePageParams struct {
BaseEventPageParams
OpenGraphParams
HeadParams
Details DetailsParams
Content template.HTML
Cover string
Subject string
TitleizedContent string
Clients []ClientReference
}
templ noteInnerBlock(params NotePageParams) {
if params.Event.subject != "" {
<h1 class="text-2xl" itemprop="headline">{ params.Event.subject }</h1>
} else {
<h1 class="hidden">
{ params.Event.author.ShortName() } on Nostr: { params.TitleizedContent }
</h1>
}
if params.Cover != "" {
<img src={ params.Cover } alt={ params.Alt } class="mt-1"/>
}
<!-- main content -->
<div dir="auto" class="leading-6" itemprop="articleBody">
@templ.Raw(params.Content)
</div>
}
templ noteTemplate(params NotePageParams, isEmbed bool) {
<!DOCTYPE html>
if isEmbed {
@embeddedPageTemplate(
params.Event,
params.NeventNaked,
isEmbed,
) {
@noteInnerBlock(params)
}
} else {
@eventPageTemplate(
params.TitleizedContent,
params.OpenGraphParams,
params.HeadParams,
params.Clients,
params.Details,
params.Event,
isEmbed,
) {
@noteInnerBlock(params)
}
}
}