Basic search and display working
This commit is contained in:
parent
17cb7765c1
commit
c64226ffb9
12 changed files with 325 additions and 65 deletions
10
book.html
Normal file
10
book.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<h1>{{.Title}}</h1>
|
||||
<p>{{.Description}}</p>
|
||||
<img src="{{.Cover}}" alt="{{.Title}}" />
|
||||
<ul>
|
||||
<li><strong>Author:</strong> {{range .Author}}{{.}}, {{end}}</li>
|
||||
<li><strong>Publisher:</strong> {{.Publisher}}</li>
|
||||
<li><strong>Tags:</strong> {{range .Subject}}{{.}}, {{end}}</li>
|
||||
<li><strong>Date:</strong> {{.Date}}</li>
|
||||
<li><strong>Lang:</strong> {{range .Lang}}{{.}} {{end}}</li>
|
||||
</ul>
|
Reference in a new issue