aboutsummaryrefslogtreecommitdiff
path: root/templates/topics.html
blob: 5c3667f5429a07c8d0d05286dc0e8bfaaa777b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "topics" }}
{{ $categoryCount := len .Papers.List }}
{{ if gt $categoryCount 0 }}
  <p>Topics: 
  {{ $first := true -}}
  {{- range $category, $paper := .Papers.List -}}
  {{- if $first -}}{{- $first = false -}}{{- else -}}, {{ end -}}
  <a href="#{{ $category }}">{{ $category }}</a>
  {{- end -}}.</p>
{{ else }}
  <p>nothing here yet.</p>
{{ end }}
{{ end }}