www/layouts/books/single.html

13 lines
186 B
HTML
Raw Normal View History

2021-03-31 00:19:01 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>
<u>Author:</u> {{ .Description }}<br/>
<u>Finished reading on:</u> {{ .PublishDate.Format "2006-01-02" }}
</p>
{{ .Content }}
{{ end }}