redstrate.com/themes/red/layouts/partials/head.html

26 lines
1 KiB
HTML
Raw Normal View History

2022-08-24 10:26:29 -04:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-08-24 10:26:29 -04:00
2022-11-06 17:25:01 -05:00
<meta name="theme-color" content="#eff1ff" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#34313a" media="(prefers-color-scheme: dark)">
{{ if .IsHome }}
<meta name="description" content="{{ $.Site.Params.description }}">
<title>{{.Site.Title}}</title>
{{ else }}
<title>{{.Site.Title}} / {{ .Title }}</title>
<meta name="description" content="{{ .Summary }}">
{{ end }}
2022-10-31 11:02:59 -04:00
<link href="/blog/index.xml" rel="alternate" type="application/rss+xml" title="{{ $.Site.Author.name }}'s blog">
2022-09-26 11:06:53 -04:00
2022-08-24 10:26:29 -04:00
{{ $style := resources.Get "css/site.css" }}
{{ if hugo.IsProduction }}
{{ $style = $style | minify | fingerprint | resources.PostProcess }}
{{ end }}
2022-08-24 10:26:29 -04:00
<link href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}" rel="stylesheet" >
2022-10-27 10:56:25 -04:00
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
2022-09-26 11:06:53 -04:00
</head>