You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
<!--
|
|
|
|
PROJECT: Copper Hugo
|
|
VERSION: 1.1.0
|
|
AUTHOR: Themefisher
|
|
AUTHOR WEBSITE: https://themefisher.com
|
|
|
|
-->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ .Title }}</title>
|
|
|
|
{{ "<!-- mobile responsive meta -->" | safeHTML }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<meta name="description" content="{{ with .Params.Description }}{{ . }}{{ else }}{{ with site.Params.description }}{{ . }}{{ end }}{{ end }}">
|
|
{{ with site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
|
{{ hugo.Generator }}
|
|
|
|
{{ "<!-- plugins -->" | safeHTML }}
|
|
{{ range site.Params.plugins.css }}
|
|
<link rel="stylesheet" href="{{ .link | absURL }}">
|
|
{{ end }}
|
|
|
|
{{ "<!-- Main Stylesheet -->" | safeHTML }}
|
|
{{ $styles := resources.Get "scss/style.scss" | toCSS }}
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
|
|
|
{{ "<!--Favicon-->" | safeHTML }}
|
|
<link rel="shortcut icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
|
|
<link rel="icon" href="{{ `images/favicon.png` | absURL }}" type="image/x-icon">
|
|
|
|
{{ with .Params.Image }}
|
|
<meta property="og:image" content="{{ . | absURL }}" />
|
|
{{ end }}
|
|
{{ template "_internal/opengraph.html" . }}
|
|
{{ template "_internal/google_analytics.html" . }}
|
|
|
|
</head> |