2023-01-30 13:14:33 -06:00
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" > <!-- This ensures your site looks right on mobile devices -->
2023-05-21 13:22:50 -05:00
< link rel = "stylesheet" type = "text/css" href = "{{relURL " css / readable . min . css ? v = v1.1.0"}}" >
2023-02-14 16:38:42 -06:00
< meta name = "description" content = '{{ .Page.Description }}' >
2023-02-22 12:59:35 -06:00
{{ if .Site.Params.favicon }}
< link rel = "shortcut icon" href = "{{ relURL ($.Site.Params.favicon) }}" type = "image/x-icon" / > <!-- Show a favicon for your site, if one is configured in the Params section of the config. -->
{{ end }}
2023-01-30 13:14:33 -06:00
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
< title > {{ $title }}< / title >
2023-07-23 16:47:59 -05:00
{{ partial "hook_head_end.html" . }}
2023-02-22 12:59:35 -06:00
< / head >