meta.html 828 B

123456789101112131415161718
  1. <title>{{ .Site.Params.title }}</title>
  2. <meta name="theme-color" content="" />
  3. <meta charset="utf-8" />
  4. <meta content="width=device-width, initial-scale=1.0" name="viewport" />
  5. <meta name="description" content="{{ .Site.Params.description }}" />
  6. <meta name="author" content="{{ .Site.Params.author }}" />
  7. {{- $hugoGenerator := index (findRE `content=\"(.+)\"` hugo.Generator) 0 }}
  8. <meta name="generator" content="aafu theme by Darshan in {{ replaceRE `content=|\"` `` $hugoGenerator }}" />
  9. {{ if .Site.Params.favicons.use }}
  10. {{- $metas := .Site.Params.favicons.metas }}
  11. {{- range (split $metas "\n") }}
  12. {{- $original := index (findRE `href=\"(.*?)\"` .) 0 }}
  13. {{- $processed := replaceRE `href=|\"` `` $original | relURL }}
  14. {{- replaceRE `(href=\")(.*?)(\")` (print `$1` $processed `$3`) . | safeHTML }}
  15. {{- end }}
  16. {{- end -}}