28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
|  | {{- with resources.Get "css/color.css" }} | ||
|  |   {{- if eq hugo.Environment "development" }} | ||
|  |     <link rel="stylesheet" href="{{ .RelPermalink }}"> | ||
|  |   {{- else }} | ||
|  |     {{- with . | minify | fingerprint }} | ||
|  |       <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> | ||
|  |     {{- end }} | ||
|  |   {{- end }} | ||
|  | {{- end }} | ||
|  | {{- with resources.Get "css/fonts.css" }} | ||
|  |   {{- if eq hugo.Environment "development" }} | ||
|  |     <link rel="stylesheet" href="{{ .RelPermalink }}"> | ||
|  |   {{- else }} | ||
|  |     {{- with . | minify | fingerprint }} | ||
|  |       <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> | ||
|  |     {{- end }} | ||
|  |   {{- end }} | ||
|  | {{- end }} | ||
|  | {{- with resources.Get "css/main.css" }} | ||
|  |   {{- if eq hugo.Environment "development" }} | ||
|  |     <link rel="stylesheet" href="{{ .RelPermalink }}"> | ||
|  |   {{- else }} | ||
|  |     {{- with . | minify | fingerprint }} | ||
|  |       <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> | ||
|  |     {{- end }} | ||
|  |   {{- end }} | ||
|  | {{- end }} |