13 lines
538 B
HTML
13 lines
538 B
HTML
|
<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>
|