48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
<!doctype html>
 | 
						|
<html
 | 
						|
  itemscope
 | 
						|
  lang="{{ site.LanguageCode | default `en-US` }}"
 | 
						|
  itemtype="http://schema.org/WebPage">
 | 
						|
  <head>
 | 
						|
    <!-- head (don't cache it) -->
 | 
						|
    {{ partial "essentials/head.html" . }}
 | 
						|
 | 
						|
 | 
						|
    <!-- style (always cache it) -->
 | 
						|
    {{ partialCached "essentials/style.html" . }}
 | 
						|
  </head>
 | 
						|
 | 
						|
  <body>
 | 
						|
    <!-- cache partial only in production -->
 | 
						|
    {{ if hugo.IsProduction }}
 | 
						|
      {{ partialCached "preloader.html" . }}
 | 
						|
      {{ partialCached "gtm-noscript.html" . }}
 | 
						|
    {{ else }}
 | 
						|
      {{ partial "preloader.html" . }}
 | 
						|
 | 
						|
 | 
						|
      <!-- tailwind size indicator -->
 | 
						|
      {{ partial "components/tw-size-indicator.html" . }}
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
 | 
						|
    <!-- header (don't cache it) -->
 | 
						|
    {{ partial "essentials/header.html" . }}
 | 
						|
    {{ partial "search-modal.html" (dict "Context" . ) }}
 | 
						|
 | 
						|
 | 
						|
    <main>
 | 
						|
      {{ block "main" . }}{{ end }}
 | 
						|
    </main>
 | 
						|
 | 
						|
    <!-- cache partial only in production -->
 | 
						|
    {{ if hugo.IsProduction }}
 | 
						|
      {{ partialCached "essentials/footer.html" . }}
 | 
						|
      {{ partialCached "essentials/script.html" . }}
 | 
						|
    {{ else }}
 | 
						|
      {{ partial "essentials/footer.html" . }}
 | 
						|
      {{ partial "essentials/script.html" . }}
 | 
						|
    {{ end }}
 | 
						|
  </body>
 | 
						|
</html>
 |