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.
 
 
 
 
 

33 lines
1.3 KiB

  1. <head>
  2. <meta charset="utf-8" />
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <meta name="msapplication-TileColor" content="#da532c">
  5. <meta name="theme-color" content="#ffffff">
  6. {{ if .Description }}
  7. <meta name="description" content="{{ .Description }}" />
  8. {{ end }}
  9. {{ if .Keywords }}
  10. <meta name="keywords" content="{{ delimit .Keywords "," }}" />
  11. {{ end }}
  12. {{ if .Params.Author }}
  13. <meta name="author" content="{{ .Params.Author}}" />
  14. {{ end }}
  15. {{ template "_internal/opengraph.html" . }}
  16. {{ template "_internal/twitter_cards.html" . }}
  17. {{ hugo.Generator }}
  18. <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon.png">
  19. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  20. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  21. <link rel="manifest" href="/site.webmanifest">
  22. <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#996561">
  23. {{ $sjsopts := dict "targetPath" "js/sandpoints.js" "minify" "true"}}
  24. {{ $sjs := resources.Get "js/sandpoints.js" | js.Build $sjsopts }}
  25. <script defer src='{{ $sjs.Permalink }}' type="application/javascript"></script>
  26. <title>{{ block "title" . }}{{- .Title }} - {{ .Site.Title -}}{{ end }}</title>
  27. </head>