Files
hugo-coder-timeline/layouts/partials/header.html
Gabor Nagy 0485ff61a4 Make main menu optional. (#1)
Building the site fails if the menu is not defined in the config,
because the `header.html` references `.Site.Menus.main`. It can be made
optional by using the `with` helper.
2018-03-23 10:33:26 -03:00

17 lines
421 B
HTML

<nav class="navigation">
<section class="container">
<a class="navigation-title" href="{{ "/" | absURL }}">
{{ .Site.Title }}
</a>
{{with .Site.Menus.main}}
<ul class="navigation-list float-right">
{{ range sort . }}
<li class="navigation-item">
<a class="navigation-link" href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
{{end}}
</section>
</nav>