hugo-theme-readable

Fork of https://github.com/cjtheham/hugo-theme-readable
git clone https://git.eamoncaddigan.net/hugo-theme-readable.git
Log | Files | Refs | README | LICENSE

commit bbbc85d8244e4886b11dc099946769b6c62554aa
parent e0098cfafd77902810a09dc3d9b5bed5fe4af9b4
Author: Robert Lützner <robert.luetzner@pm.me>
Date:   Thu, 18 May 2023 01:13:27 +0000

feat: add params.navbar_style to config to select a style for the navbar (#14)

This is a new feature in readable.css 1.1.0. The new version of
readable.css defaults to a navbar without animations, but to stay
compatible with older releases of this theme, we default to "classy"
instead which is the animated navbar.

The new navbar styles also look better without wrapping the elements
inside a `<span>`, so we make that conditional and only apply it when
the "classy" style is chosen.
Diffstat:
Mlayouts/partials/header.html | 11++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/layouts/partials/header.html b/layouts/partials/header.html @@ -1,10 +1,15 @@ <h1>{{ $.Site.Title }}</h1> <p>{{ $.Site.Params.subtitle }}</p> -<nav data-style="classy"> +<!-- readable.css v1.1.0 introduced different navbar styles and defaults to a +navbar without animations. We default to "classy" to keep the animations and be +backwards compatible to earlier versions of this theme without requiring a +config change. --> +{{ $navbar_style := (default "classy" $.Site.Params.navbar_style) }} +<nav data-style={{ $navbar_style }}> {{ range .Site.Menus.main -}} - <span> + {{ if eq $navbar_style "classy" }}<span>{{ end }} <a href="{{ .URL | absLangURL }}">{{ .Name }}</a> - </span> + {{ if eq $navbar_style "classy" }}</span>{{ end }} {{- end }} </nav>