mirror of
				https://github.com/TeamPiped/hugo-whisper-theme.git
				synced 2024-08-14 23:57:00 +00:00 
			
		
		
		
	Error: "themes\hugo-whisper-theme\layouts\_default\baseof.html:30:1": parse master failed: template: index.html:30: function "site" not defined
		
			
				
	
	
		
			73 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|   <meta charset="utf-8">
 | |
|   <meta http-equiv="x-ua-compatible" content="ie=edge">
 | |
|   <title>{{ block "title" . }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
 | |
|   <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|   {{ block "meta_tags" . }}{{end}}
 | |
|   <link rel="icon" href="{{ "favicon.png" | absURL}}">
 | |
| 
 | |
|   {{ if .Site.IsServer }}
 | |
|   {{ $style := resources.Get "scss/style.scss" | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" true) }}
 | |
|   <link rel="stylesheet" href="{{ ($style).RelPermalink }}">
 | |
|   {{ else }}
 | |
|   {{ $style := resources.Get "scss/style.scss" | toCSS (dict "targetPath" "css/style.css" "enableSourceMap" false) }}
 | |
|   <link rel="stylesheet" href="{{ ($style | minify | fingerprint).RelPermalink }}">
 | |
|   {{ end }}
 | |
| 
 | |
|   {{ block "header_css" . }}{{ end }}
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body class='page {{ block "body_classes" . }}{{ end }}'>
 | |
|   {{ partial "main-menu-mobile.html" . }}
 | |
|   <div class="wrapper">
 | |
|     {{ partial "header.html" . }}
 | |
| 
 | |
|     {{ $displaySidebar := false }}
 | |
|     {{ range .Site.Params.mainSections }}
 | |
|     {{ if eq $.Section . }}
 | |
|     {{ $displaySidebar = true }}
 | |
|     {{ end }}
 | |
|     {{ end }}
 | |
| 
 | |
|     {{ if $displaySidebar }}
 | |
|     <div class="container pt-2 pt-md-6 pb-3 pb-md-6">
 | |
|       <div class="row">
 | |
|         <div class="col-12 col-md-3 mb-3">
 | |
|           <div class="sidebar">
 | |
|             {{ partial "sidebar.html" . }}
 | |
|           </div>
 | |
|         </div>
 | |
|         <div class="col-12 col-md-9">
 | |
|           {{ block "main" . }}
 | |
|           {{ end }}
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|     {{ else }}
 | |
|     {{ block "main" . }}
 | |
|     {{ end }}
 | |
|     {{ end}}
 | |
|   </div>
 | |
| 
 | |
|   {{ partial "sub-footer.html" . }}
 | |
| 
 | |
|   {{ $scripts := resources.Get "js/scripts.js" }}
 | |
| 
 | |
|   {{ block "footer_js" . }}
 | |
|   {{ end }}
 | |
| 
 | |
|   {{ if .Site.IsServer }}
 | |
|   <script type="text/javascript" src="{{ $scripts.RelPermalink }}"></script>
 | |
|   {{ else }}
 | |
|   <script type="text/javascript" src="{{ ($scripts | minify | fingerprint).RelPermalink }}"></script>
 | |
|   {{ end }}
 | |
| 
 | |
|   {{ partial "google-analytics.html" . }}
 | |
| 
 | |
| </body>
 | |
| 
 | |
| </html>
 |