You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
292B

  1. <div class="header">
  2. <h1>{{ .Site.Title }}</h1>
  3. <h2>{{ .Site.Params.TitleTag | markdownify }}</h2>
  4. <nav class="nav">
  5. <ul class="flat">
  6. {{ range $index, $key := .Site.Params.Nav }}
  7. <li>
  8. <a href="{{ $key.link }}">{{ $key.name }}</a>
  9. </li>
  10. {{ end }}
  11. </ul>
  12. </nav>
  13. </div>