blob: 3ffb236005016211e56932844d271e2ccc6df5e4 (
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
|
{{ define "main" }}
<article>
<h1>{{ .Title }}</h1>
<h4>{{ .Params.author }}</h4>
<h6>{{ .Date | time.Format ":date_full" }}</h6>
{{ if isset .Params "image" }}
<img src="{{ .Params.image }}" alt="Book cover of the book {{ .Title }}" />
{{ end }}
{{ if isset .Params "amazon" }}
<p>
<a href="{{ .Params.amazon }}" target="_blank">amazon</a>
</p>
{{ end }}
<div>
<p>Rating: </p>
{{ if isset .Params "rating" }}
{{ $rating := .Params.rating }}
{{ range $i, $num := (seq $rating) }}
⭐
{{ end }}
{{ else }}
<p>N/A</p>
{{ end }}
</div>
</article>
{{ end }}
|