This commit is contained in:
Vincent Fiduccia
2018-04-27 01:41:46 -07:00
parent 7060477f28
commit 16feeacbf6
5 changed files with 58 additions and 68 deletions
-10
View File
@@ -3,16 +3,6 @@
{{ end }}
{{ define "hero" }}
<section class="hero">
{{ with .Params.Title }}
<h1>{{ . }}</h1>
{{end}}
{{ with .Params.Author }}
<span class="byline bg-link">{{ . }}</span>
{{end}}
</section>
{{ end }}
{{ define "main" }}
+3 -2
View File
@@ -33,11 +33,12 @@
{{ $topLevel := .Scratch.Get "topLevel"}}
{{ if $topLevel }}
{{ range $topLevel.Sections }}
{{ if .IsAncestor $.CurrentSection }}
{{ $isCurrent := .IsAncestor $.CurrentSection }}
{{ if $isCurrent }}
{{ $.Scratch.Set "secondLevel" . }}
{{ end }}
<li><a href="{{ .Permalink }}" class="">{{ .Title }}</a></li>
<li class="{{if $isCurrent}}active{{end}}"><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
+4 -6
View File
@@ -1,4 +1,4 @@
<div class="tree-nav">
<div class="tree-nav invisible">
<ul>
{{ template "section-tree-nav" ($.Scratch.Get "secondLevel") }}
</ul>
@@ -7,14 +7,12 @@
{{ range .Sections}}
<li class="tree-nav-item"><a href="{{ .RelPermalink}}">{{ .Title }}</a>
{{if gt (len .Sections) 0}}
<i class="material-icons pull-right expand-more">add_box</i>
<i class="material-icons pull-right expand-toggle">add_box</i>
<ul class="tree-nav-sublist hide">
{{ range .Pages }}
<li class="tree-nav-item-child"><a href="{{ .RelPermalink}}">{{ .Title }}</a></li>
<li class="tree-nav-item-child"><a href="{{ .RelPermalink}}">{{ .Title }}</a></li>
{{ end }}
<ul>
{{ template "section-tree-nav" . }}
</ul>
{{ template "section-tree-nav" . }}
</ul>
{{end}}
</li>