Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
vor 7 Jahren
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="{{ $.Site.LanguageCode | default "en" }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  6. {{/* NOTE: the Site's title, and if there is a page title, that is set too */}}
  7. <title>{{ block "title" . }}{{ .Site.Title }} {{ with .Params.Title }} | {{ . }}{{ end }}{{ end }}</title>
  8. <meta name="HandheldFriendly" content="True">
  9. <meta name="MobileOptimized" content="320">
  10. <meta name="viewport" content="width=device-width,minimum-scale=1">
  11. {{ .Hugo.Generator }}
  12. {{/* NOTE: For Production make sure you add `HUGO_ENV="production"` before your build command */}}
  13. {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
  14. <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
  15. {{ else }}
  16. <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
  17. {{ end }}
  18. {{ $stylesheet := .Site.Data.webpack_assets.app }}
  19. {{ with $stylesheet.css }}
  20. <link href="{{ printf "%s%s" "/dist/" . }}" rel="stylesheet">
  21. {{ end }}
  22. {{ block "favicon" . }}
  23. {{ partial "site-favicon.html" . }}
  24. {{ end }}
  25. {{ if .RSSLink }}
  26. <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  27. <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
  28. {{ end }}
  29. {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
  30. {{- template "_internal/opengraph.html" . -}}
  31. {{- template "_internal/google_news.html" . -}}
  32. {{- template "_internal/schema.html" . -}}
  33. {{- template "_internal/twitter_cards.html" . -}}
  34. {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
  35. {{ template "_internal/google_analytics_async.html" . }}
  36. {{ end }}
  37. </head>
  38. <body class="ma0 {{ $.Param "body_classes" | default "avenir bg-near-white"}}{{ with getenv "HUGO_ENV" }} {{ . }}{{ end }}">
  39. {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
  40. <main class="pb7" role="main">
  41. {{ block "main" . }}{{ end }}
  42. </main>
  43. {{ block "footer" . }}{{ partial "site-footer.html" . }}{{ end }}
  44. {{ block "scripts" . }}{{ partial "site-scripts.html" . }}{{ end }}
  45. </body>
  46. </html>