summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/partials/header.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/problematic/layouts/partials/header.html')
-rw-r--r--themes/problematic/layouts/partials/header.html12
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>