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

config.toml « exampleSite - github.com/jeremybise/twentynineteen-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4aa5715c56786c350f181e8867db48b011255fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
baseURL = "https://twentynineteen-hugo-demo.netlify.com/"
languageCode = "en-us"
title = "My New Hugo Site"
theme = "twentynineteen-hugo"

# Syntax highlighting
pygmentsUseClasses=true
pygmentsCodefences=true

# Pagination
paginate = 5

# Output formats (for search index)
[outputs]
Home = ["HTML", "RSS", "JSON"]

# Site params
[params]
privacy_link = "/privacy/"
description = "TwentyNineteen ported from WordPress"

# Menus
[menu]
  [[menu.main]]
    name = "Home"
    url = "/"
    weight = 1
  [[menu.main]]
    name = "Tags"
    url = "/tags/"
    weight = 2
  [[menu.main]]
    name = "About"
    url = "/about/"
    weight = 3
  [[menu.social]]
    identifier = "github"
    name = "Github"
    url = "https://github.com/jeremybise/twentynineteen-hugo"
  [[menu.social]]
    identifier = "twitter"
    name = "Twitter"
    url = "https://twitter.com/gohugoio"
  [[menu.footer]]
    name = "About"
    url = "/about/"
    weight = 1