summaryrefslogtreecommitdiffstats
path: root/testscripts/commands/hugo_configprod.txt
blob: ac046b205709819a04119b6dfdb7b606e2a21a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Test the hugo command.

hugo
grep 'myparam: §'  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"
---