mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
fa0e16f4c7
Fixes #7735
26 lines
314 B
Text
26 lines
314 B
Text
hugo --printPathWarnings
|
|
|
|
stdout 'Duplicate'
|
|
|
|
-- hugo.toml --
|
|
-- assets/css/styles.css --
|
|
body {
|
|
background-color: #000;
|
|
}
|
|
-- content/p1.md --
|
|
---
|
|
url: /p1/
|
|
---
|
|
-- content/p2.md --
|
|
---
|
|
url: /p1/
|
|
---
|
|
-- content/p3.md --
|
|
---
|
|
url: /p1/
|
|
---
|
|
-- layouts/index.html --
|
|
Home.
|
|
-- layouts/_default/single.html --
|
|
Single.
|
|
|