diff options
Diffstat (limited to '')
-rw-r--r-- | layouts/books/single.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/books/single.html b/layouts/books/single.html new file mode 100644 index 0000000..f0ae554 --- /dev/null +++ b/layouts/books/single.html @@ -0,0 +1,12 @@ +{{ define "main" }} + +<h1>{{ .Title }}</h1> + +<p> +<u>Author:</u> {{ .Description }}<br/> +<u>Finished reading on:</u> {{ .PublishDate.Format "2006-01-02" }} +</p> + +{{ .Content }} + +{{ end }} |