baseof.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="{{.Site.LanguageCode}}">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <meta name="theme-color" content="#494f5c">
  8. <meta name="msapplication-TileColor" content="#494f5c">
  9. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
  10. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  11. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  12. <link rel="manifest" href="/site.webmanifest">
  13. <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#494f5c">
  14. <link rel="shortcut icon" href="/favicon.ico">
  15. <title>{{.Title}}</title>
  16. <link rel="dns-prefetch" href="https://ojirvqiyr.qnssl.com/">
  17. <link rel="dns-prefetch" href="//cdn1.lncld.net">
  18. <link rel="dns-prefetch" href="//unpkg.com">
  19. {{ range .AlternativeOutputFormats -}}
  20. {{ printf `<link rel="%s" type="%s+%s" href="%s" title="%s" />` .Rel .MediaType.Type .MediaType.Suffix .Permalink $.Site.Title | safeHTML }}
  21. {{ end -}}
  22. {{ with resources.Get "scss/style.scss" | toCSS | minify -}}
  23. <style>{{ .Content | safeCSS }}</style>
  24. {{- end }}
  25. {{ block "head" . -}}{{- end }}
  26. </head>
  27. <body id="page">
  28. {{ block "header" . -}}{{ end -}}
  29. {{ block "main" . -}}{{ end -}}
  30. {{ block "footer" . -}}{{ end }}
  31. </body>
  32. </html>