Browse Source

publication archive: Fix error when no publications exist

George Cushen 7 years ago
parent
commit
9e14c8a74e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      layouts/section/publication.html

+ 2 - 0
layouts/section/publication.html

@@ -33,11 +33,13 @@
         <select class="pub-filters" 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>
       </p>