head.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <head>
  2. <meta charset="utf-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <link rel="canonical" href="{{ .Permalink }}">
  6. <link rel="apple-touch-icon" sizes="57x57" href="{{ "images/apple-touch-icon-57x57.png" | absURL }}">
  7. <link rel="apple-touch-icon" sizes="60x60" href="{{ "images/apple-touch-icon-60x60.png" | absURL }}">
  8. <link rel="apple-touch-icon" sizes="72x72" href="{{ "images/apple-touch-icon-72x72.png" | absURL }}">
  9. <link rel="apple-touch-icon" sizes="76x76" href="{{ "images/apple-touch-icon-76x76.png" | absURL }}">
  10. <link rel="apple-touch-icon" sizes="114x114" href="{{ "images/apple-touch-icon-114x114.png" | absURL }}">
  11. <link rel="apple-touch-icon" sizes="120x120" href="{{ "images/apple-touch-icon-120x120.png" | absURL }}">
  12. <link rel="apple-touch-icon" sizes="144x144" href="{{ "images/apple-touch-icon-144x144.png" | absURL }}">
  13. <link rel="apple-touch-icon" sizes="152x152" href="{{ "images/apple-touch-icon-152x152.png" | absURL }}">
  14. <link rel="apple-touch-icon" sizes="180x180" href="{{ "images/apple-touch-icon-180x180.png" | absURL }}">
  15. <link rel="icon" type="image/png" sizes="192x192" href="{{ "images/android-icon-192x192.png" | absURL }}">
  16. <link rel="icon" type="image/png" sizes="32x32" href="{{ "images/favicon-32x32.png" | absURL }}">
  17. <link rel="icon" type="image/png" sizes="96x96" href="{{ "images/favicon-96x96.png" | absURL }}">
  18. <link rel="icon" type="image/png" sizes="16x16" href="{{ "images/favicon-16x16.png" | absURL }}">
  19. <meta name="msapplication-TileColor" content="#ffffff">
  20. <meta name="msapplication-TileImage" content="{{ "images/ms-icon-144x144.png" | absURL }}">
  21. <meta name="theme-color" content="#ffffff">
  22. <link rel="stylesheet" href="{{ "css/prism.css" | absURL }}" media="none" onload="this.media='all';">
  23. <link rel="stylesheet" type="text/css" href="{{ "css/styles.css" | absURL }}">
  24. <style id="inverter" media="none">
  25. html { filter: invert(100%) }
  26. * { background-color: inherit }
  27. img:not([src*=".svg"]), .colors, iframe, .demo-container { filter: invert(100%) }
  28. </style>
  29. {{ $title := print .Title " | " .Site.Title }}
  30. {{ if .IsHome }}
  31. {{ $title = .Site.Title }}
  32. {{ end }}
  33. <title>
  34. {{ $title }}
  35. </title>
  36. {{ if .IsHome }}
  37. <link rel="manifest" href="manifest.json">
  38. {{ end }}
  39. </head>