26 lines
		
	
	
		
			846 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			846 B
		
	
	
	
		
			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">
 | ||
|     <title>{{ block "title" . }}{{ .Title }} – {{ .Site.Title }}{{ end }}</title>
 | ||
|     {{ partial "head/scripts" . }}    
 | ||
|     {{ partial "head/styles" . }}
 | ||
|     {{ partial "head/meta" . }}
 | ||
|     {{ partial "head/meta_json_ld" . }}
 | ||
|     {{ partial "head/service" . }}
 | ||
| </head>
 | ||
| 
 | ||
| <body id="root" class="theme__{{ index .Site.Params.themeOptions 0 }}">
 | ||
|     <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> |