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

config.toml « exampleSite - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5139cca1b9d1703bb9efd7991c2f731629379eb (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
theme = "edidor"
title = "Edidor Demo"
baseurl = "https://your site url"
AuthorName = "Jon Doe"
# place your logo file to ./static/images to set logo

# i18n is not completed yet, help is appreciated.
languageCode = "en"
defaultContentLanguage = "en"
# you may not need this
hasCJKLanguage = true


# ----- feel free change these settings, those are not tied to this theme --
paginate = 5
enableEmoji = true

# to have better preview
buildDrafts = "true"
# helpful if you want to edit the site or theme code
disableFastRender = true
# --------------------------------------------------------------------------

disqusShortname = "your disqus short name"
googleAnalytics = "your ga id"

# social link in the footer, change it to "" hide it
[social]
    github = " "
    facebook = " "
    twitter = " "
    behance = " "
    email = " "

# author, title, description are used in the home page, you can embed html tag in description
[params]
    # will use AuthorName if you leave it blank, but you can set it to arbitrary text
    author = "Ziox"
    title = "ZIOX DEMO"
    description = "A hugo site using Edidor. <br/><br/> Ctrl+B toggle sidebar. "
    # change it to false if you don't need syntax highlighting, and save a little bandwidth
    isHighlightCode = true

# menubar setting, you can change url, weight and name except the 'Theme'.
[[menu.main]]
    name = "Article"
    url = "#"
    weight = 1
[[menu.main]]
    name = "View"
    url = "#"
    weight = 10
# You can change the name, but please don't edit the identifier
[[menu.main]]
    parent = "View"
    identifier = "toggle-sidebar"
    name = "Toggle Sidebar"
    url = "#"
    weight = 10
[[menu.main]]
    parent = "Article"
    name = "Posts"
    url = "/posts"
    weight = 1
[[menu.main]]
    parent = "Article"
    name = "Tags"
    url = "/tags"
    weight = 20
[[menu.main]]
    parent = "Article"
    name = "Categories"
    url = "/categories"
    weight = 30

# Please don't edit the identifier
# I can't make the identifier works on top menu so please don't change the name of 'Theme' at the moment
[[menu.main]]
    name = "Theme"
    url = "#"
    weight = 25
[[menu.main]]
    parent = "Theme"
    identifier = "light"
    name = "Light"
    url = "#"
    weight = 1
[[menu.main]]
    parent = "Theme"
    identifier = "dark"
    name = "Dark"
    url = "#"
    weight = 10
[[menu.main]]
    parent = "Theme"
    identifier = "wild"
    name = "Wild"
    url = "#"
    weight = 20
[[menu.main]]
    parent = "Theme"
    identifier = "export-wild"
    name = "Export Wild Style"
    url = "#"
    weight = 25