header.html 761 B

1234567891011121314151617181920
  1. <meta charset="UTF-8" />
  2. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  3. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  4. {{ partial "helpers/style-bundle.html" . }}
  5. <!--================= fab-icon =========================-->
  6. {{/* add favicon only if the site author has provided the the favicon */}}
  7. {{ if site.Params.logo.favicon }}
  8. {{ $favicon := site.Params.logo.favicon }}
  9. {{/* resize the favicon. don't resize svg because it is not supported */}}
  10. {{ $favicon = resources.Get $favicon }}
  11. {{ if and $favicon (ne $favicon.MediaType.SubType "svg") }}
  12. {{ $favicon = $favicon.Resize "42x" }}
  13. {{ end }}
  14. {{ $favicon = $favicon.RelPermalink}}
  15. <link rel="icon" type="image/png" href="{{ $favicon }}" />
  16. {{end}}