33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | ||
| <html lang="{{ .Site.Language.Lang }}" dir="{{ $.Param "languagedir" | default "ltr" }}">
 | ||
| 
 | ||
| <head>
 | ||
|     <meta charset="utf-8">
 | ||
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | ||
|     <title>{{ block "title" . }}{{ .Title }} – {{ .Site.Title }}{{ end }}</title>
 | ||
|     {{ partialCached "head/scripts" . }}    
 | ||
|     {{ partialCached "head/styles" . }}
 | ||
|     {{ partial "head/meta" . }}
 | ||
|     {{ partial "head/meta_json_ld" . }}
 | ||
|     {{ partial "head/services" . }}
 | ||
|     {{ partial "head/custom" . }}
 | ||
| </head>
 | ||
| 
 | ||
| <body id="root" class="theme__{{ index .Site.Params.themeOptions 0 }}">
 | ||
|     <script>
 | ||
|         var localTheme = localStorage.getItem('theme');
 | ||
|             if (localTheme) {
 | ||
|                 document.getElementById('root').className = `theme__${localTheme}`;
 | ||
|             }
 | ||
|     </script>
 | ||
|     <div id="body">
 | ||
|         <div class="container wrapper">
 | ||
|             {{ partial "navbar/site-nav" . }}
 | ||
|             {{ partial "header/site-header" . }}
 | ||
|             {{ block "main" . }}{{ end }}
 | ||
|             {{ partial "footer/site-footer" . }}
 | ||
|         </div>    
 | ||
|     </div>    
 | ||
| </body>
 | ||
| 
 | ||
| </html> |