36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.2 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>
 | 
						||
    {{ partial "head/scripts" . }}    
 | 
						||
    {{ partialCached "head/styles" . }}
 | 
						||
    {{ partial "head/meta" . }}
 | 
						||
    {{ partial "head/meta_json_ld" . }}
 | 
						||
    {{ partial "head/services" . }}
 | 
						||
    {{ partial "head/custom-head" . }}
 | 
						||
</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">
 | 
						||
        {{ partial "body/custom-wrapper" . }}
 | 
						||
        <div class="container wrapper">
 | 
						||
            {{ partial "navbar/site-nav" . }}
 | 
						||
            {{ partial "header/site-header" . }}
 | 
						||
            {{ block "main" . }}{{ end }}
 | 
						||
            {{ partial "body/custom-body" . }}
 | 
						||
            {{ partial "footer/site-footer" . }}
 | 
						||
        </div>    
 | 
						||
    </div>
 | 
						||
</body>
 | 
						||
 | 
						||
</html> |