Splitting up into partials

This commit is contained in:
Matthew Dillon 2015-06-20 16:44:50 -08:00
parent 3612009d32
commit 46c25611b6
6 changed files with 50 additions and 34 deletions
layouts/partials

View file

@ -0,0 +1,12 @@
<header class="siteHeader container clearfix">
<h1 class="logo">{{ .Site.Title }}</h1>
<nav class="nav">
<ul>
{{ range .Site.Menus.main }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>
</nav>
</header>