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

config.toml « exampleSite - github.com/rhnvrm/bodhi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9ed99bda445896cf90f776bf2d845ff44e9a4c4 (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
48
49
50
51
52
53
54
55
56
57
58
baseURL = "https://example.com/"
languageCode = "en-us"
title = "Bodhi Theme"
theme = "bodhi"

[params]
    subtitle = "simple and minimal."
    avatar = "/avatar.png"
    author = "Rohan Verma"
    commentoSrc = "https://commento.example.com/js/commento.js"
    footerMessage = "Keep it simple."
    disableSearch = false

[[menu.main]]
name = "home"
url = "/"
weight = 1

[[menu.main_right]]
name = "about"
url = "/about/"
weight = 1

[[menu.nav]]
name = "blogs"
url = "/blog"
weight = 1

[[menu.nav]]
parent = "blogs"
name = "tags"
url = "/tags"
weight = 2

[[menu.nav]]
parent = "blogs"
name = "categories"
url = "/categories"
weight = 3

[markup.goldmark.renderer]
unsafe= true

[outputs]
  home = ["HTML", "RSS", "JSON"]

[markup]
  [markup.highlight]
    codeFences = true
    guessSyntax = true
    lineNoStart = 1
    noClasses = false
    tabWidth = 4

[[params.social]]
name = "Github"
icon = "github"
url = "https://github.com/rhnvrm/bodhi"