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

13 lines
520 B
HTML
Raw Normal View History

2020-03-05 04:10:52 +00:00
{{ define "main" }}
<div class="sidebar-title mb-1 pb-8">▒▒ all topics:</div>
2020-03-05 04:10:52 +00:00
{{ range .Data.Pages }}
{{ with .Site.Data.myvars.edit }}
{{ $relpermalink := printf "%s%s" "_preview" .RelPermalink}}
{{ else }}
{{ $relpermalink := .RelPermalink }}
{{ end }}
<div><a class="sidebar-list text-base" href="{{ $relpermalink }}{{ if eq hugo.Environment "offline" }}index.html{{ end }}">> {{ .Title }}</a></div>
{{ end }}
<div class="pb-8"></div>
2020-03-05 04:10:52 +00:00
{{ end }}