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" . }} +
NLUUG-logo {{ partialCached "header.html" . }} + {{ partial "breadcrumb.html" . }}
{{- block "main" . }} @@ -22,7 +24,7 @@ diff --git a/themes/nluug/layouts/partials/breadcrumb.html b/themes/nluug/layouts/partials/breadcrumb.html new file mode 100644 index 0000000..91feb5d --- /dev/null +++ b/themes/nluug/layouts/partials/breadcrumb.html @@ -0,0 +1,16 @@ + diff --git a/themes/nluug/layouts/partials/style.html b/themes/nluug/layouts/partials/style.html index 507619e..81b109d 100644 --- a/themes/nluug/layouts/partials/style.html +++ b/themes/nluug/layouts/partials/style.html @@ -1,3 +1,4 @@ {{ $styles := resources.Get "scss/styles.scss" | toCSS (dict "outputStyle" "compressed") | minify }} +{{ $styles_breadcrumb := resources.Get "scss/styles_breadcrumb.scss" | toCSS (dict "outputStyle" "compressed") | minify }} {{ $styles_extra := resources.Get "scss/_extra.scss" | toCSS (dict "outputStyle" "compressed") | minify }} - +