-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlist.html
More file actions
22 lines (22 loc) · 852 Bytes
/
list.html
File metadata and controls
22 lines (22 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{- /* All Books Page */ -}}
{{ partial "header.html" . }}
<main id="main-content">
<div class="main-header">
<h1 class="page-title sr-only">All Books</h1>
<div class="group">
{{ partial "combobox.html" . }}
{{ partial "comboboxsort.html" . }}
</div>
<div class="item-count">{{ .Pages | len }} books</div>
</div>
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner">
{{ range sort .Pages ".Params.dateOpenAccess" "desc" }}
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-tablet mdc-layout-grid__cell--span-6-phone" data-dateopenaccess="{{ .Params.dateOpenAccess }}" data-datebook="{{ .Params.dateBook }}" data-titlesort="{{ .Params.titleSort }}">
{{ partial "summary.html" . }}
</div>
{{ end }}
</div>
</div>
</main>
{{ partial "footer.html" . }}