diff options
author | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-01-05 21:01:12 +0000 |
---|---|---|
committer | Matthew Lemon <chaffinach+git@protonmail.ch> | 2022-01-05 21:01:12 +0000 |
commit | f7a556559b17c6267ff898f68cae02a49bf87da6 (patch) | |
tree | 99ddd3d1b83c7bb94dfb8863bdad742afb53cd22 /themes/problematic/layouts/partials/header.html | |
parent | 62443b2f690d52b4949f8a92fa713ab6848be606 (diff) |
site works with no css
Diffstat (limited to '')
-rw-r--r-- | themes/problematic/layouts/partials/header.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/problematic/layouts/partials/header.html b/themes/problematic/layouts/partials/header.html index e69de29..9a66449 100644 --- a/themes/problematic/layouts/partials/header.html +++ b/themes/problematic/layouts/partials/header.html @@ -0,0 +1,12 @@ +<header id="banner"> + <h2><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h2> + <nav> + <ul> + {{ range .Site.Menus.main.ByWeight -}} + <li> + {{ .Pre }}<a href="{{ .URL }}" title="{{ .Title }}">{{- .Name -}}</a>{{ .Post }} + </li> + {{- end }} + </ul> + </nav> +</header> |