60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| <meta charset="utf-8" />
 | |
| <title>{{ .Title | default site.Title }}</title>
 | |
| 
 | |
| <!-- responsive meta -->
 | |
| <meta
 | |
|   name="viewport"
 | |
|   content="width=device-width, initial-scale=1, maximum-scale=5" />
 | |
| 
 | |
| <!-- theme meta -->
 | |
| <meta name="theme-name" content="hugoplate" />
 | |
| 
 | |
| <!-- favicon -->
 | |
| {{ partialCached "favicon" . }}
 | |
| 
 | |
| 
 | |
| <!-- manifest -->
 | |
| {{ partialCached "manifest" . }}
 | |
| 
 | |
| 
 | |
| <!-- site verifications -->
 | |
| {{ partialCached "site-verifications.html" . }}
 | |
| 
 | |
| 
 | |
| <!-- opengraph and twitter card -->
 | |
| {{ partial "basic-seo.html" . }}
 | |
| 
 | |
| 
 | |
| <!-- custom script -->
 | |
| {{ partialCached "custom-script.html" . }}
 | |
| 
 | |
| 
 | |
| <!-- google analytics -->
 | |
| {{ if and site.Config.Services.GoogleAnalytics.ID (ne site.Config.Services.GoogleAnalytics.ID "G-MEASUREMENT_ID") }}
 | |
|   {{ template "_internal/google_analytics.html" . }}
 | |
| {{ end }}
 | |
| 
 | |
| 
 | |
| <!-- google tag manager -->
 | |
| {{ partialCached "gtm.html" . }}
 | |
| 
 | |
| 
 | |
| <!-- search index -->
 | |
| {{ partial "search-index.html" . }}
 | |
| 
 | |
| 
 | |
| <!-- matomo analytics -->
 | |
| {{/* {{ partialCached "matomo-analytics.html" . }} */}}
 | |
| 
 | |
| <!--  Baidu analytics -->
 | |
| {{/* {{ partialCached "baidu-analytics.html" . }} */}}
 | |
| 
 | |
| <!-- Plausible Analytics -->
 | |
| {{/* {{ partialCached "plausible-analytics.html" . }} */}}
 | |
| 
 | |
| <!-- Counter Analytics -->
 | |
| {{/* {{ partialCached "counter-analytics.html" . }} */}}
 | |
| 
 | |
| <!-- Crisp Chat -->
 | |
| {{/* {{ partialCached "crisp-chat.html" . }} */}}
 |