52 lines
1.9 KiB
HTML
52 lines
1.9 KiB
HTML
{{ if ( eq ( .Scratch.Get "listMode" ) "current" ) }}
|
|
{{ .Scratch.Set "filterCol" "Date Started" }}
|
|
{{ .Scratch.Set "filterDir" "asc" }}
|
|
{{ else if ( eq ( .Scratch.Get "listMode" ) "log" ) }}
|
|
{{ .Scratch.Set "filterCol" "Date Finished" }}
|
|
{{ .Scratch.Set "filterDir" "desc" }}
|
|
{{ else if ( eq ( .Scratch.Get "listMode" ) "wishlist" ) }}
|
|
{{ .Scratch.Set "filterCol" "Title" }}
|
|
{{ .Scratch.Set "filterDir" "asc" }}
|
|
{{ end }}
|
|
|
|
{{ range ( sort ( sort ( index $.Site.Data.books ( .Scratch.Get "listMode" ) ) "Title" "asc" ) ( .Scratch.Get "filterCol" ) ( .Scratch.Get "filterDir" ) ) }}
|
|
<tr>
|
|
<td>{{ if index . "Date Added" }}{{ time.Format "Jan 2, 2006" ( index . "Date Added" ) }}{{ else }}n/a{{end }}</td>
|
|
<td>
|
|
<p>
|
|
{{- with ( where ( where $.Site.Pages "Section" "books" ) "Title" .Title ) -}}
|
|
{{ range . }}
|
|
<a href="{{ .RelPermalink }}">
|
|
{{ end }}
|
|
{{- end -}}
|
|
<cite class="book">{{ .Title }}</cite>{{ if .Edition }} <span class="book--edition">({{ .Edition }})</span>{{ end }}
|
|
{{- with ( where ( where $.Site.Pages "Section" "books" ) "Title" .Title ) -}}
|
|
</a>
|
|
{{- end -}}
|
|
</p>
|
|
</td>
|
|
<td>
|
|
<p class="author">{{ .Author }}</p>
|
|
{{- if ( index . "Additional Authors" ) -}}
|
|
<p class="author--additional">Additional: {{ index . "Additional Authors" }}</p>
|
|
{{- end -}}
|
|
</td>
|
|
<td>
|
|
<p class="year">{{- index . "Year Published" -}}
|
|
{{- if ( index . "Original Publication Year" ) -}}
|
|
<span class="year--original">(orig. {{ index . "Orginal Publication Year" }})</span>
|
|
{{- end -}}
|
|
</td>
|
|
<td>
|
|
{{- if index . "Date Started" -}}
|
|
{{- time.Format "Jan 2, 2006" ( index . "Date Started" ) -}}
|
|
{{- else -}}
|
|
Unknown
|
|
{{- end -}}–{{- if index . "Date Finished" -}}
|
|
{{- time.Format "Jan 2, 2006" ( index . "Date Finished" ) -}}
|
|
{{- else -}}
|
|
Unknown
|
|
{{- end -}}
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|