erynwells.me/layouts/index.html

16 lines
450 B
HTML

{{ define "main" }}
<div class="platter grid">
<h1 class="site">{{ .Title }}</h1>
<div id="content">
{{ .Content }}
</div>
{{- with site.Menus.main -}}
{{- $url := $.RelPermalink -}}
<nav class="site bulleted">
{{- range . -}}
<li><a class="{{ if eq .URL $url }}active{{ end }}" href="{{ .URL }}"><span>{{ i18n .Identifier | default .Name }}</span></a></li>
{{- end -}}
</nav>
{{ end }}
</div>
{{ end }}