This repository has been archived on 2020-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
Syllabus/themes/piratecare/layouts/topic/list.html

9 lines
324 B
HTML

{{ define "main" }}
<div class="sidebar-title mb-1 pb-8">▒▒ all topics ▽</div>
<ul class="pb-8">
{{ range .Data.Pages }}
<li><a class="sidebar-list text-base" href="{{ .Permalink }}{{ if eq hugo.Environment "offline" }}index.html{{ end }}">> {{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}