diff options
Diffstat (limited to 'layouts/baseof.html')
| -rw-r--r-- | layouts/baseof.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/baseof.html b/layouts/baseof.html index 2e4d6c7..cdbb1e3 100644 --- a/layouts/baseof.html +++ b/layouts/baseof.html @@ -13,7 +13,9 @@ </head> <body> <a href="#main-content" class="skip-link">Skip to content</a> - <div class="progress-bar" id="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div> + {{ if and (not .IsHome) (ne .Kind "term") (ne .Kind "taxonomy") (ne .Kind "section") }} + <div class="progress-bar" id="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div> + {{ end }} {{ partial "header.html" . }} <main id="main-content">{{ block "main" . }}{{ end }}</main> <footer>{{ partial "footer.html" . }}</footer> |
