-
{{ range .Pages }}
- - {{ .Title | default "Geen titel" }} + {{ .Title | default .Site.Params.textNoTitle }} {{ end }}
diff --git a/config/_default/params.toml b/config/_default/params.toml index 817f565..e994b94 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -9,5 +9,7 @@ timeZone = "Europe/Amsterdam" # Grafisch logo = "/assets/favicon.ico" + # Kanarie: Deze tekst (en vogel) gebruiken we om lege waardes op te sporen in output + textNoTitle = "Geen titel 🐦" # EOF diff --git a/themes/nluug/assets/scss/styles_breadcrumb.scss b/themes/nluug/assets/scss/styles_breadcrumb.scss new file mode 100644 index 0000000..c8d3b00 --- /dev/null +++ b/themes/nluug/assets/scss/styles_breadcrumb.scss @@ -0,0 +1,16 @@ +.breadcrumb { + list-style: none; + display: flex; + flex-wrap: wrap; + align-items: baseline; +} + +.breadcrumb li { + display: inline; + white-space: nowrap; +} + +.breadcrumb li + li:before { + content: ">"; + padding: 0.3rem; +} diff --git a/themes/nluug/layouts/_default/baseof.html b/themes/nluug/layouts/_default/baseof.html index 8c61cd5..e351897 100644 --- a/themes/nluug/layouts/_default/baseof.html +++ b/themes/nluug/layouts/_default/baseof.html @@ -2,11 +2,13 @@ {{ partial "head.html" . }}
+ Ga naar hoofd