header.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode }}">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="alternate" type="application/rss+xml" title="Feed" href="{{ .Site.RSSLink }}"/>
  7. <link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml"/>
  8. <link rel="replies" type="application/atom+xml" title="Comment Feed" href="feed/"/>
  9. <title>{{ .Title }} | {{ .Site.Title }}</title>
  10. <meta name="DC.Title" content="{{ .Title }}"/>
  11. <meta name="author" content="{{ $.Param "author" }}"/>
  12. <meta name="date" content="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}"/>
  13. <meta name="keywords" content="{{ with ($.Param "tags") }}{{ range $index, $v := . }}{{ if gt $index 0 }}, {{ end }}{{ $v }}{{ end }}{{ end }}"/> <!-- https://tools.ietf.org/html/rfc2731 -->
  14. {{ range $i := (slice "categories" "tags") }}{{ with ($.Param $i) }}{{ range $index, $v := . }} <meta name="DC.Subject" scheme="../../../{{ $i }}/" content="{{ $v }}"/>
  15. {{ end }}{{ end }}{{ end }} <link rel="stylesheet" href="{{ "/assets/prism.css" | relURL }}" />
  16. <link rel="stylesheet" href="{{ "/assets/style.css" | relURL }}" />
  17. <script src="{{ "/assets/script.js" | relURL }}"></script>
  18. {{ partial "head_custom.html" . }}
  19. </head>
  20. <body>
  21. <nav>
  22. <ul class="menu">
  23. {{ range .Site.Menus.main }}
  24. <li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
  25. {{ end }}
  26. </ul>
  27. <form action="{{ .Site.BaseURL }}search">
  28. <input type="text" name="q" placeholder="🔍 Search"/>
  29. <button submit="submit">Search!</button>
  30. </form>
  31. <hr/>
  32. </nav>