-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathdefault.template.html
More file actions
32 lines (31 loc) · 1.03 KB
/
Copy pathdefault.template.html
File metadata and controls
32 lines (31 loc) · 1.03 KB
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
@:embed(/templates/main.template.html)
<section class="bulma-hero bulma-is-primary bulma-is-bold">
<div class="bulma-hero-body bulma-container bulma-is-max-desktop">
<p class="bulma-title bulma-has-text-light">${cursor.currentDocument.title}</p>
<p class="blog-post-byline bulma-has-text-light bulma-subtitle">
by
@:for(author)
${_.name}<span class="delimiter">,</span><span class="last-delimiter"> &</span>
@:@
on @:date(date, "MMMM d, yyyy")
</p>
@:for(tags)
<span class="bulma-tag">${_}</span>
@:@
</div>
</section>
<div class="bulma-section bulma-container bulma-is-max-desktop">
<div class="blog-post bulma-content">
${cursor.currentDocument.content}
</div>
</div>
<div class="bulma-section bulma-container bulma-is-max-desktop">
<div class="bulma-grid bulma-is-col-min-12 bulma-is-column-gap-2 bulma-is-row-gap-2">
@:for(author)
<div class="bulma-cell">
@:include(/templates/bio.template.html) { render-bio = true }
</div>
@:@
</div>
</div>
@:@