blob: 36ba26e8769f4a88183d32fa503713d9d6550984 (
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
|
baseurl = "https://example.com/"
languageCode = "en"
title = "Soho Theme"
DefaultContentLanguage = "en"
enableInlineShortcodes = true
summarylength = 10
enableEmoji = true
paginate = 5
[params]
title = "Soho Theme"
description = "Example Blog"
# gravatar = "soho@example.com"
images = ["images/profile.png"]
profilePicture = "images/profile.png"
copyright = "Author Name"
license = "CC BY-SA 4.0"
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
builtWith = true
mainSections = ["post"]
## Set custom theme color.
# themeColor = "#fc2803"
[[params.socialIcons]]
icon = "fa-linkedin"
title = "Linkedin"
url = "#"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
url = "https://github.com/alexandrevicenzi/soho"
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "#"
[taxonomies]
series = "series"
category = "categories"
tag = "tags"
[menu]
[[menu.main]]
name = "Posts"
weight = 100
identifier = "posts"
url = "/posts/"
[[menu.main]]
name = "Categories"
weight = 200
identifier = "categories"
url = "/categories/"
[[menu.main]]
name = "Tags"
weight = 200
identifier = "tags"
url = "/tags/"
[[menu.main]]
name = "About"
identifier = "about"
weight = 10
url = "/about/"
[[menu.main]]
name = "Contact"
identifier = "contact"
weight = 20
url = "/contact/"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4
|