publication.html 778 B

123456789101112131415161718192021222324252627
  1. {{ if .Site.Params.publication.types }}
  2. {{ range.Site.Params.publication.types }}
  3. {{ $type := . }}
  4. <h4 style="text-decoration: underline;">{{ $type }}</h4>
  5. {{- range $.Site.Params.publication.list -}}
  6. {{ if eq $type .type }}
  7. {{- $this_publication := . -}}
  8. <p class="foo indent-8">
  9. {{- range $.Site.Params.publication.format -}}
  10. {{- partial "accordion/supportingPartials/addTitle" (dict "all" $this_publication "ind" .) -}}
  11. {{- end -}}
  12. </p>
  13. {{ end }}
  14. {{- end -}}
  15. {{ end }}
  16. {{ else }}
  17. {{- range $.Site.Params.publication.list -}}
  18. {{- $this_publication := . -}}
  19. <p class="bar -indent-8">
  20. {{- range $.Site.Params.publication.format -}}
  21. {{- partial "accordion/supportingPartials/addTitle" (dict "all" $this_publication "ind" .) -}}
  22. {{- end -}}
  23. </p>
  24. {{ end }}
  25. {{ end }}