mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			408 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			408 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
hugo --printPathWarnings
 | 
						|
 | 
						|
! stdout 'Duplicate'
 | 
						|
 | 
						|
-- hugo.toml --
 | 
						|
-- assets/css/styles.css --
 | 
						|
body {
 | 
						|
  background-color: #000;
 | 
						|
}
 | 
						|
-- content/p1.md --
 | 
						|
-- content/p2.md --
 | 
						|
-- content/p3.md --
 | 
						|
-- layouts/index.html --
 | 
						|
Home.
 | 
						|
-- layouts/_default/single.html --
 | 
						|
{{ $css := resources.Get "css/styles.css" }}
 | 
						|
{{ $css := $css | minify | fingerprint | resources.PostProcess  }}
 | 
						|
CSS: {{ $css.RelPermalink }}
 | 
						|
{{ .Title }}
 | 
						|
 |