Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/stip-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2019-04-02 22:00:44 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-04-02 22:00:44 +0300
commitaa193588f65fc584cd56ca855fdef8f706b6c9b9 (patch)
treefc9432103abe75ee995db7c26d1a6fa1e6a63373
parentf16c1bbbe52a12ced622fd458cef260afc865fce (diff)
Disable pages and sections for example site
This theme doesn't have layouts for page and section. Not disabling them causes warnings in the log on the Hugo theme site.
-rw-r--r--exampleSite/config.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 608d16b..241a095 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -3,7 +3,7 @@ languageCode = "en"
defaultContentLanguage = "en"
title = "Stip"
theme = "stip"
-disableKinds = ["taxonomy", "taxonomyTerm"]
+disableKinds = ["page", "section", "taxonomy", "taxonomyTerm"]
[Author]
name = "Jane Doe"