mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
fa0e16f4c7
Fixes #7735
20 lines
408 B
Text
20 lines
408 B
Text
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 }}
|
|
|