diff options
Diffstat (limited to 'themes/flamingo/layouts/partials/header.html')
-rw-r--r-- | themes/flamingo/layouts/partials/header.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/themes/flamingo/layouts/partials/header.html b/themes/flamingo/layouts/partials/header.html new file mode 100644 index 0000000..8f26fb4 --- /dev/null +++ b/themes/flamingo/layouts/partials/header.html @@ -0,0 +1,27 @@ +<header> + <!-- title wrapper --> + <div class="title-wrapper"> + <a href="/"> + <h2 class="title">{{ .Site.Title }}</h2> + </a> + <nav> + <ul> + <li><a href="/posts/">posts</a></li> + <li><a href="/projects/">projects</a></li> + <li><a href={{ .Site.Params.resume }} target="_blank">resume</a></li> + <!-- <li><a href="/resume/" target="_blank" >resume</a></li> --> + </ul> + </nav> + </div> + <!-- title wrapper end --> + + {{ with .Site.Menus.main }} + <nav> + <ul> + {{ range . }} + <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li> + {{ end }} + </ul> + </nav> + {{ end }} +</header> |