diff --git a/config.toml b/config.toml index 33092c9..7825002 100644 --- a/config.toml +++ b/config.toml @@ -79,6 +79,12 @@ DefaultContentLanguage = "en" [params.sign] headline = "Sign our open letter!" description = "Show that you want to free publicly financed code by signing our open letter." + formName = "Name (required)" + formEmail = "Email (required)" + formCountry = "Country" + formZip = "ZIP Code" + formPermission1 = "I have read the privacy statement and would like to stay informed about the future of this campaign" + formSubmit = "Sign" # Spread the word section [params.spread] @@ -103,6 +109,17 @@ DefaultContentLanguage = "en" transparency = "Transparency" license = "Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved." +# Subpages +[params.subpage] + +# Signatures Subpage +[params.subpage.signatures] + headline = "Signatures" + id = "ID" + name = "Name" + country = "Country" + zip = "ZIP Code" + # 404 Error Page [params.error] headline = "Error 404 - Page not found" diff --git a/layouts/partials/page-signatures.html b/layouts/partials/page-signatures.html index 3477f16..55b2fa6 100644 --- a/layouts/partials/page-signatures.html +++ b/layouts/partials/page-signatures.html @@ -3,15 +3,15 @@
ID | -Name | -Country | -Zip Code | +{{ .Site.Params.Subpage.Signatures.id }} | +{{ .Site.Params.Subpage.Signatures.name }} | +{{ .Site.Params.Subpage.Signatures.country }} | +{{ .Site.Params.Subpage.Signatures.zip }} |
---|