head.html 592 B

123456789101112131415
  1. <head>
  2. <title>{{ .Site.Title }}</title>
  3. <meta content="text/html;charset=utf-8" http-equiv="Content-Type">
  4. <meta content="utf-8" http-equiv="encoding">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="format-detection" content="telephone=no" />
  7. <meta name="theme-color" content="#000" />
  8. <link rel="icon" href="/favicon.ico">
  9. <link rel="canonical" href="{{ .Site.BaseURL }}">
  10. {{- range .Site.Params.css }}
  11. <link href="{{ . | relURL }}?{{ slicestr (. | relURL | md5) 0 10 }}" rel="stylesheet">
  12. {{- end }}
  13. </head>