Skip to content
Snippets Groups Projects
header.html 350 B
Newer Older
  • Learn to ignore specific revisions
  • Alexandre MEYER's avatar
    Alexandre MEYER committed
    <header id="banner">
        <h2><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h2>
        <nav>
            <ul>
                {{ range .Site.Menus.main.ByWeight -}}
                <li>
                    {{ .Pre }}<a href="{{ .URL }}" title="{{ .Title }}">{{- .Name -}}</a>{{ .Post }}
                </li>
                {{- end }}
            </ul>
        </nav>
    </header>