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
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 .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. <link href='{{ "dist/main.css" | absURL }}' rel='stylesheet' type="text/css" />
  19. {{ if .RSSLink }}
  20. <link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
  21. <link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}" />
  22. {{ end }}
  23. {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/spf13/hugo/blob/master/tpl/tplimpl/template_embedded.go#L158 */}}
  24. {{- template "_internal/opengraph.html" . -}}
  25. {{- template "_internal/google_news.html" . -}}
  26. {{- template "_internal/schema.html" . -}}
  27. {{- template "_internal/twitter_cards.html" . -}}
  28. {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
  29. {{ template "_internal/google_analytics_async.html" . }}
  30. {{ end }}
  31. </head>
  32. <body class="ma0 avenir bg-near-white{{ with getenv "HUGO_ENV" }} {{ . }}{{ end }}">
  33. {{ block "header" . }}{{ partial "site-header.html" .}}{{ end }}
  34. <main class="pb7" role="main">
  35. {{ block "main" . }}{{ end }}
  36. </main>
  37. {{ block "footer" . }}{{ partial "site-footer.html" . }}{{ end }}
  38. {{ block "scripts" . }}{{ partial "site-scripts.html" . }}{{ end }}
  39. </body>
  40. </html>