13 lines
		
	
	
		
			711 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			711 B
		
	
	
	
		
			HTML
		
	
	
	
| {{ define "cssincludes" }}
 | |
| {{ $options := dict "targetPath" "default.css" "outputStyle" "compressed" "enableSourceMap" false -}}
 | |
| {{ $style := resources.Get "/css/custom/nodes/voc-talks.scss" | resources.ToCSS $options | resources.Minify | resources.Fingerprint -}}
 | |
| <link rel="stylesheet" href="{{ $style.Permalink }}" />
 | |
| {{ end }}
 | |
| 
 | |
| {{ define "jsincludes" }}
 | |
| {{ $externals := slice "htm" "preact" "luxon" }}
 | |
| {{ $buildOptions := dict "targetPath" "voc-talks.js" "externals" $externals }}
 | |
| {{ $nodejs := resources.Get "/js/custom/nodes/voc-talks.js" | js.Build $buildOptions | resources.Fingerprint }}
 | |
| <script src="{{ $nodejs.Permalink }}" integrity="{{ $nodejs.Data.Integrity }}" type="module"></script>
 | |
| {{ end }}
 |