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.

1234567891011121314151617181920212223242526272829303132
  1. <head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  3. <meta name="description" content="{{ if .Description }}{{ .Description }}{{else if .IsPage}}{{ .Summary | plainify}}{{ else }}{{.Site.Params.description}}{{ end }}">
  4. <meta name="author" content="{{ with .Params.author }}{{ . }}{{else}}{{ with .Site.Params.author}}{{ . }}{{ end }}{{end}}">
  5. {{ "<!-- Mobile Specific Meta -->" | safeHTML }}
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. {{ .Hugo.Generator }}
  8. <title>{{ if .IsHome }}{{ .Site.Title }}{{" | "}}{{ .Site.Params.Description }}{{ else if .IsPage}}{{ .Title }}{{" | "}}{{ .CurrentSection.Title }}{{else}}{{ .Title }}{{" | "}}{{ .Site.Title }}{{ end }}</title>
  9. {{"<!-- Favicon -->" |safeHTML}}
  10. <link rel="shortcut icon" type="image/x-icon" href="{{ "images/favicon.ico" | absURL }}"/>
  11. {{"<!-- CSS -->"|safeHTML}}
  12. {{"<!-- Fontawesome Icon font -->"|safeHTML}}
  13. <link rel="stylesheet" href="{{"plugins/themefisher-font/style.css" | absURL}}">
  14. {{"<!-- bootstrap.min css -->"|safeHTML}}
  15. <link rel="stylesheet" href="{{"plugins/bootstrap/dist/css/bootstrap.min.css"|absURL}}">
  16. {{"<!-- Animate.css -->"|safeHTML}}
  17. <link rel="stylesheet" href="{{"plugins/animate-css/animate.css"|absURL}}">
  18. {{"<!-- Magnific popup css -->"|safeHTML}}
  19. <link rel="stylesheet" href="{{"plugins/magnific-popup/dist/magnific-popup.css"|absURL}}">
  20. {{"<!-- Slick Carousel -->"|safeHTML}}
  21. <link rel="stylesheet" href="{{"plugins/slick-carousel/slick/slick.css"|absURL}}">
  22. <link rel="stylesheet" href="{{"plugins/slick-carousel/slick/slick-theme.css"|absURL}}">
  23. {{"<!-- Main Stylesheet -->"|safeHTML}}
  24. {{ $styles := resources.Get "css/style.css" | minify}}
  25. <link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}" media="screen">
  26. </head>