head.html (759B)
1 <head> 2 <meta charset="utf-8"> 3 <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- This ensures your site looks right on mobile devices --> 4 <link rel="stylesheet" type="text/css" href="{{relURL "css/readable.min.css?v=v1.1.0"}}"> 5 <meta name="description" content='{{ .Page.Description }}'> 6 {{ if .Site.Params.favicon }} 7 <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. --> 8 {{ end }} 9 {{ $title := print .Site.Title " | " .Title }} 10 {{ if .IsHome }}{{ $title = .Site.Title }}{{ end }} 11 <title>{{ $title }}</title> 12 {{ partial "hook_head_end.html" . }} 13 </head>