go-bouquins/templates/index.html

19 lines
807 B
HTML
Raw Normal View History

2017-07-30 16:09:27 +00:00
{{ template "header.html" . }}
2017-08-05 09:16:19 +00:00
<div class="container">
<div class="jumbotron" id="index">
2017-07-30 16:09:27 +00:00
<h1>Bouquins</h1>
<p>Cette bibliothèque contient actuellement <strong>{{ .BooksCount }}</strong> livres et BD en format papier ou électronique.</p>
<button class="btn btn-primary" type="button" @click="showBooks">Livres</button>
<button class="btn btn-primary" type="button" @click="showAuthors">Auteurs</button>
<button class="btn btn-primary" type="button" @click="showSeries">Series</button>
</div>
<div class="table-responsive">
2017-08-05 09:16:19 +00:00
{{ template "index_paginate.html" }}
{{/* template "index_series.html" */}}
{{/* template "index_authors.html" */}}
{{ template "index_books.html" }}
{{ template "index_paginate.html" }}
2017-07-30 16:09:27 +00:00
</div>
</div>
{{ template "footer.html" . }}