mirror of
https://github.com/fruworg/themu.git
synced 2024-11-16 15:07:17 +03:00
24c5dcf9e7
On branch master Your branch is up to date with 'origin/master'. Changes to be committed: modified: layouts/404.html modified: layouts/_default/single.html modified: layouts/partials/footer.html modified: layouts/partials/head.html modified: layouts/partials/header.html
11 lines
198 B
HTML
11 lines
198 B
HTML
<header>
|
|
<div class="main">
|
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</div>
|
|
<nav>
|
|
{{ range .Site.Menus.main }}
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
</nav>
|
|
</header>
|