mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
27 lines
304 B
Plaintext
27 lines
304 B
Plaintext
hugo --printPathWarnings
|
|
|
|
stderr '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/home.html --
|
|
Home.
|
|
-- layouts/single.html --
|
|
Single.
|
|
|