Syllabus/themes/sandpoints/layouts/partials/header.html

13 lines
538 B
HTML
Raw Normal View History

2020-08-18 23:14:35 +00:00
<header>
{{ if not .IsHome }}
<a href="{{ .Site.Home.RelPermalink }}{{ if eq hugo.Environment "offline" }}index.html{{ end }}"><span class="sup">P</span><i>irate Care</i></a>
{{ end }}
{{ $currentSession := . }}
{{ range where $.Site.RegularPages ".Section" "topic" }}
{{ if in .Params.has_sessions $currentSession.File.LogicalName }}
<i> » <a href="{{ .RelPermalink }}{{ if eq hugo.Environment "offline" }}index.html{{ end }}">{{ .Title }}</a></i>
{{ end }}
{{ end }}
</header>