Skip to content

Commit

Permalink
Don't show toc outline if no pages to show (#150)
Browse files Browse the repository at this point in the history
Otherwise we get a weird blue box displayed on pages with no .Pages.
  • Loading branch information
illicitonion authored Jan 2, 2024
1 parent 6960c9b commit a5dd989
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions website/layouts/_default/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<div class="c-page-header__container">
<h1 class="c-page-header__title e-heading e-heading__1">{{.Title}}</h1>

{{ if .Pages }}
<aside class="c-toc c-page-header__toc is-none--lt-container">
<ol>
{{ range .Pages }}
Expand All @@ -14,6 +15,7 @@ <h1 class="c-page-header__title e-heading e-heading__1">{{.Title}}</h1>
{{ end}}
</ol>
</aside>
{{ end }}
</div>
</header>

Expand Down

0 comments on commit a5dd989

Please sign in to comment.