mirror of
				https://github.com/Brandon-Rozek/website-theme.git
				synced 2025-10-31 01:41:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <head>
 | |
|     <title>
 | |
|         {{ if eq .Title .Site.Title }}
 | |
|             {{ .Site.Title }}
 | |
|         {{ else }}
 | |
|             {{ .Title }} - {{ .Site.Title }}
 | |
|         {{ end }}
 | |
|     </title>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|     <meta name="author" content="{{ .Site.Author }}" />
 | |
|     <link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico">
 | |
| 
 | |
|     <!-- css -->
 | |
|     <link rel="stylesheet" href="/css/style.css">
 | |
|     <link rel="stylesheet" href="/css/markdown.css">
 | |
|     <link rel="stylesheet" href="/css/syntax-highlight.css">
 | |
| 
 | |
|     <!-- custom css -->
 | |
|     {{ range .Site.Params.custom_css }}
 | |
|     <link rel="stylesheet" href="{{ . }}">
 | |
|     {{ end }}
 | |
| 
 | |
|     {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates */}}
 | |
|     {{- template "_internal/opengraph.html" . -}}
 | |
|     {{- template "_internal/google_news.html" . -}}
 | |
|     {{- template "_internal/schema.html" . -}}
 | |
|     {{- template "_internal/twitter_cards.html" . -}}
 | |
| 
 | |
|     <!-- Polyfill for old browsers -->
 | |
|     {{ `<!--[if lte IE 9]>
 | |
|     <script src="https://cdnjs.cloudflare.com/ajax/libs/classlist/1.1.20170427/classList.min.js"></script>
 | |
|     <![endif]-->` | safeHTML }}
 | |
| 
 | |
|     {{ `<!--[if lt IE 9]>
 | |
|     <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
 | |
|     <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
 | |
|     <![endif]-->` | safeHTML }}
 | |
| 
 | |
|     <!-- Analytics -->
 | |
|     {{- if and (not .Site.IsServer) .Site.GoogleAnalytics -}}
 | |
|     {{ template "_internal/google_analytics_async.html" . }}
 | |
|     {{- end -}}
 | |
| </head>
 |