mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
231374a1fa
Fixes #11013
19 lines
430 B
Text
19 lines
430 B
Text
# Test the hugo command.
|
|
env HUGO_ENV=development
|
|
|
|
hugo
|
|
grep 'myparam: dev§' public/index.html
|
|
|
|
-- hugo.toml --
|
|
baseURL = "http://example.org/"
|
|
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
|
-- layouts/index.html --
|
|
myparam: {{ site.Params.myparam }}§
|
|
-- layouts/_default/single.html --
|
|
Title: {{ .Title }}
|
|
-- config/development/params.toml --
|
|
myparam = "dev"
|
|
-- content/p1.md --
|
|
---
|
|
title: "P1"
|
|
---
|