20 lines
988 B
HTML
20 lines
988 B
HTML
<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 -->
|
|
<link rel="stylesheet" type="text/css" href="{{relURL "css/readable.min.css?v=v1.1.0"}}">
|
|
<meta name="description" content='{{ .Page.Description }}'>
|
|
{{ 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 }}
|
|
{{ $title := print .Site.Title " | " .Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
<title>{{ $title }}</title>
|
|
{{ partial "hook_head_end.html" . }}
|
|
{{ if .IsHome }}
|
|
<link rel="stylesheet" type="text/css" href="{{relURL "css/homepage.css"}}">
|
|
{{ end }}
|
|
{{ if .IsPage }}
|
|
<link rel="stylesheet" type="text/css" href="{{relURL "css/page.css"}}">
|
|
{{ end }}
|
|
</head>
|