diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2019-07-07 12:03:29 +0200 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2019-07-07 12:03:29 +0200 |
commit | 2ef9e995adac6dbbd1c71c9b0f66ecc0f7934ddd (patch) | |
tree | af3f51c1fe0bc58afe7a2e2a1fb225213af19175 | |
parent | c64b7d0325ae059a7c4bb2ea8e6d35f0fdbd1e6c (diff) | |
download | website-2ef9e995adac6dbbd1c71c9b0f66ecc0f7934ddd.tar.gz website-2ef9e995adac6dbbd1c71c9b0f66ecc0f7934ddd.zip |
config: Allow indexing
The default was set to <NOINDEX, NOFOLLOW> causing the site not to be
indexed. Setting a site parameter to production allows indexing by
robots.
-rw-r--r-- | config.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.toml b/config.toml index 93f8126..0a09f7b 100644 --- a/config.toml +++ b/config.toml @@ -5,6 +5,8 @@ theme = "ananke" enableRobotsTXT = true DefaultContentLanguage = "en" #MetaDataFormat = "yaml" +Paginate = 6 +env = "production" #enable robots to index [params] description = "Ouroboros is a decentralized packet network" @@ -16,6 +18,8 @@ date_format = "January 2, 2006" copyright = "CC BY-SA" author = "Dimitri Staessens" defaultDestcription = "Ouroboros" +recent_posts_number = 2 +body_classes = "georgia bg-near-white" [menu] @@ -99,6 +103,13 @@ defaultDestcription = "Ouroboros" identifier = "id_about" url = "/about/" + # [[menu.main]] + # name = "News" + # weight = 5 + # identifier = "blog" + # url = "/blog/" + + [[menu.main]] name = "Repository" weight = 100 |