mirror of
				https://github.com/thomasjsn/hugo-theme-hello-friend.git
				synced 2025-11-04 16:48:48 +01:00 
			
		
		
		
	- Switch to the Hugo Pipes (bye bye Webpack) - Use Inter from Google Fonts - Update README
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<meta http-equiv="content-type" content="text/html; charset=utf-8">
 | 
						|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
						|
<meta name="description" content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else }}{{ .Summary | plainify }}{{ end }}"/>
 | 
						|
<meta name="keywords" content="{{ with .Params.Keywords }}{{ delimit . ", " }}{{ else }}{{ $.Site.Params.Keywords }}{{ end }}"/>
 | 
						|
<meta name="robots" content="noodp"/>
 | 
						|
<link rel="canonical" href="{{ .Permalink }}" />
 | 
						|
 | 
						|
<!-- head custom -->
 | 
						|
{{- partial "prepended_head.html" . }}
 | 
						|
 | 
						|
<!-- Theme CSS -->
 | 
						|
{{ $css := resources.Get "css/style.css" }}
 | 
						|
{{ $opts := dict "inlineImports" true }}
 | 
						|
{{ $style := $css | resources.PostCSS $opts | minify }}
 | 
						|
<link rel="stylesheet" href="{{ $style.Permalink }}">
 | 
						|
 | 
						|
<!-- Custom CSS to override theme properties (/static/style.css) -->
 | 
						|
<link rel="stylesheet" href="{{ "style.css" | absURL }}">
 | 
						|
 | 
						|
<!-- Icons -->
 | 
						|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "img/apple-touch-icon-144-precomposed.png" | absURL }}">
 | 
						|
<link rel="shortcut icon" href="{{ "img/favicon.png" | absURL }}">
 | 
						|
 | 
						|
<!-- Twitter Card -->
 | 
						|
{{ template "_internal/twitter_cards.html" . }}
 | 
						|
 | 
						|
<!-- OG data -->
 | 
						|
{{ template "_internal/opengraph.html" . }}
 | 
						|
 | 
						|
<!-- RSS | JSON -->
 | 
						|
{{ range .AlternativeOutputFormats -}}
 | 
						|
    {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
 | 
						|
{{ end -}}
 | 
						|
 | 
						|
<!-- head custom -->
 | 
						|
{{- partial "extended_head.html" . }}
 |