Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

4 anos atrás
4 anos atrás
4 anos atrás
12345678910111213141516171819202122232425262728293031323334353637383940
  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" content="{{ with .Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
  7. {{ with site.Params.author }}
  8. <meta name="author" content="{{ . }}">{{ end }}
  9. {{ hugo.Generator }}
  10. {{ "<!-- plugins -->" | safeHTML }}
  11. {{ range site.Params.plugins.css }}
  12. <link rel="stylesheet" href="{{ .link | absURL }}">
  13. {{ end }}
  14. {{"<!-- Main Stylesheet -->"|safeHTML}}
  15. {{ $styles := resources.Get "css/style.css" | minify | fingerprint "sha384" }}
  16. <link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}" media="screen">
  17. {{"<!-- Custom stylesheet - for your changes -->" |safeHTML}}
  18. <link rel="stylesheet" href="{{ `css/custom.css` | relURL}}" media="screen">
  19. {{ "<!--Favicon-->" | safeHTML }}
  20. <link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  21. <link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
  22. {{ with site.Params.google_analytics_id }}
  23. {{ "<!-- Global Site Tag (gtag.js) - Google Analytics -->" | safeHTML }}
  24. <script async src="https://www.googletagmanager.com/gtag/js?id={{ . }}"></script>
  25. <script>
  26. window.dataLayer = window.dataLayer || [];
  27. function gtag(){dataLayer.push(arguments);}
  28. gtag('js', new Date());
  29. gtag('config', '{{ . }}');
  30. </script>
  31. {{ end }}
  32. </head>