mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 10:22:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<meta charset="utf-8">
 | 
						|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
 | 
						|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 | 
						|
<!-- Title -->
 | 
						|
<title>{{ if .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
 | 
						|
<!-- Meta -->
 | 
						|
{{- if eq .Kind "page" }}
 | 
						|
<meta name="description" content="{{ .Summary }}">
 | 
						|
<meta name="author" content="{{ .Params.author | default .Site.Params.author }}">
 | 
						|
{{- else }}
 | 
						|
<meta name="description" content="{{ .Site.Params.description }}">
 | 
						|
<meta name="author" content="{{ .Site.Params.author }}">
 | 
						|
{{- end }}
 | 
						|
<!-- Styles -->
 | 
						|
{{ $anoldhope := resources.Get "css/an-old-hope.min.css" | minify }}
 | 
						|
{{ $theme := resources.Get "css/theme-vars.css" | minify }}
 | 
						|
{{ $reset := resources.Get "css/reset.css" | minify }}
 | 
						|
{{ $header := resources.Get "css/header.css" | minify }}
 | 
						|
{{ $main := resources.Get "css/main.css" | minify }}
 | 
						|
{{ $postentry := resources.Get "css/post-entry.css" | minify }}
 | 
						|
{{ $postsingle := resources.Get "css/post-single.css" | minify }}
 | 
						|
{{ $archive := resources.Get "css/archive.css" | minify }}
 | 
						|
{{ $footer := resources.Get "css/footer.css" | minify }}
 | 
						|
{{ $404 := resources.Get "css/404.css" | minify }}
 | 
						|
{{ $style := slice $theme $reset $header $main $postentry $postsingle $archive $footer $404 | resources.Concat "stylesheet.css" | minify }}
 | 
						|
{{ $stylesheet := slice $anoldhope $style | resources.Concat "css/stylesheet.css" | minify | fingerprint }}
 | 
						|
<link href="{{ $stylesheet.Permalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="stylesheet">
 | 
						|
<link href="{{ "custom.css" | absURL }}" rel="stylesheet">
 | 
						|
<!-- Favicons -->
 | 
						|
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | absURL }}">
 | 
						|
<link rel="icon" href="{{ "favicon.ico" | absURL }}">
 | 
						|
<!-- Generator -->
 | 
						|
{{- hugo.Generator }}
 | 
						|
<!-- RSS -->
 | 
						|
{{ range .AlternativeOutputFormats -}}
 | 
						|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 | 
						|
{{ end -}}
 | 
						|
<!-- Misc -->
 | 
						|
{{- if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production") }}
 | 
						|
{{- template "_internal/google_analytics_async.html" . }}
 | 
						|
{{- template "_internal/opengraph.html" . }}
 | 
						|
{{- end }}
 | 
						|
<!-- Script -->
 | 
						|
{{- if $.Site.Params.SetThemeAuto -}}
 | 
						|
{{ $settheme := resources.Get "js/set-theme.js" | minify }}
 | 
						|
<script src="{{ $settheme.Permalink }}"></script>
 | 
						|
{{- end -}} |