header.html 956 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode | default "en-us" }}">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <title>{{ .Title }}</title>
  8. {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
  9. {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
  10. <link rel="stylesheet" href="{{ .Site.BaseURL }}bower/normalize-css/normalize.css">
  11. <link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
  12. {{ if .RSSLink -}}<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}">{{- end }}
  13. {{ .Hugo.Generator }}
  14. </head>
  15. <body>
  16. <header>
  17. <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
  18. <nav>
  19. <ul>
  20. {{ range .Site.Menus.main }}
  21. <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
  22. {{ end }}
  23. </ul>
  24. </nav>
  25. </header>