123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {{ partial "header.html" . }}
- {{ partial "navbar.html" . }}
- {{ partial "page_header.html" . }}
- <div class="universal-wrapper">
- <div class="row">
- <div class="col-lg-12">
- {{ with .Content }}
- <div class="article-style" itemprop="articleBody">{{ . }}</div>
- {{ end }}
- {{/* Array of distinct years. */}}
- {{ range .Pages.ByDate.Reverse }}
- {{ $year := print (.Date.Format "2006") }}
- {{ $.Scratch.SetInMap "years" $year $year }}
- {{ end }}
- <div class="form-row mb-3">
- <div class="col-auto">
- {{ i18n "filter_by_type" }}:
- </div>
- <div class="col-auto">
- <select class="pub-filters pubtype-select form-control form-control-sm" data-filter-group="pubtype">
- <option value="*">{{ i18n "filter_all" }}</option>
- {{ partial "pub_types.html" $ }}
- {{ range $index, $taxonomy := .Site.Taxonomies.publication_types }}
- <option value=".pubtype-{{ (int $index) }}">
- {{ $pub_types := $.Scratch.Get "pub_types" }}
- {{ index $pub_types (int $index) }}
- </option>
- {{ end }}
- </select>
- </div>
- <div class="col-auto">
- <select class="pub-filters form-control form-control-sm" data-filter-group="year">
- <option value="*">{{ i18n "filter_all" }}</option>
- {{ $years_sorted := $.Scratch.GetSortedMapValues "years" }}
- {{ if $years_sorted }}
- {{ range $year := sort $years_sorted "" "desc" }}
- <option value=".year-{{ $year }}">
- {{ $year }}
- </option>
- {{ end }}
- {{ end }}
- </select>
- </div>
- </div>
- <div id="container-publications">
- {{ range .Pages.ByDate.Reverse }}
- {{ if .Params.publication_types }}
- {{ $.Scratch.Set "pubtype" (index .Params.publication_types 0) }}
- {{ else }}
- {{ $.Scratch.Set "pubtype" 0 }}
- {{ end }}
- <div class="grid-sizer col-lg-12 isotope-item pubtype-{{ $.Scratch.Get "pubtype" }} year-{{ .Date.Format "2006" }}">
- {{ if eq $.Params.list_format 1 }}
- {{ partial "publication_li_detailed" . }}
- {{ else if eq $.Params.list_format 2 }}
- {{ partial "publication_li_apa" . }}
- {{ else if eq $.Params.list_format 3 }}
- {{ partial "publication_li_mla" . }}
- {{ else if eq $.Params.list_format 4 }}
- {{ partial "publication_li_stream" . }}
- {{ else }}
- {{ partial "publication_li_simple" . }}
- {{ end }}
- </div>
- {{ end }}
- </div>
- </div>
- </div>
- </div>
- {{ partial "footer_container.html" . }}
- {{ partial "footer.html" . }}
|