You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

head.html 972B

1234567891011121314151617181920212223242526
  1. <head>
  2. <meta charset="utf-8">
  3. <title>{{ .Title }}</title>
  4. {{ "<!-- mobile responsive meta -->" | safeHTML }}
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  6. <meta name="description"
  7. content="{{ with .Description }}{{ . }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}">
  8. {{ with .Site.Params.author }}
  9. <meta name="author" content="{{ . }}">{{ end }}
  10. {{ hugo.Generator }}
  11. {{ "<!-- plugins -->" | safeHTML }}
  12. {{ range .Site.Params.plugins.css }}
  13. <link rel="stylesheet" href="{{ .link | absURL }} ">
  14. {{ end }}
  15. {{"<!-- Main Stylesheet -->"|safeHTML}}
  16. {{ $styles := resources.Get "css/style.css" | minify}}
  17. <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
  18. {{ "<!--Favicon-->" | safeHTML }}
  19. <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
  20. <link rel="icon" href="{{ `images/favicon.png` | absURL }} " type="image/x-icon">
  21. </head>