mirror of
https://github.com/gohugoio/hugo.git
synced 2025-01-24 05:31:03 +00:00
20 lines
376 B
Text
20 lines
376 B
Text
|
# Test the hugo command.
|
||
|
|
||
|
hugo
|
||
|
stdout 'Pages.*|1'
|
||
|
stdout 'Total in'
|
||
|
checkfile public/index.html
|
||
|
checkfile public/p1/index.html
|
||
|
|
||
|
-- hugo.toml --
|
||
|
baseURL = "http://example.org/"
|
||
|
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
||
|
-- layouts/index.html --
|
||
|
Home.
|
||
|
-- layouts/_default/single.html --
|
||
|
Title: {{ .Title }}
|
||
|
-- content/p1.md --
|
||
|
---
|
||
|
title: "P1"
|
||
|
---
|