-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
109 lines (90 loc) · 4.57 KB
/
config.toml
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
106
107
108
109
baseURL = "https://duing.dev"
theme = "hugo-ficurinia"
title = "Duing Dev"
languageCode = "en"
defaultContentLanguage = "en"
# this will be included in the footer after the current year the site is last
# built, followed by the (c) symbol
# you can use markdown inside this field
# copyright = "Some copyright notice - [my license](https://example.com/license)"
paginate = 5 # number of articles per page in the index
summaryLength = 70 # number of words for article summaries
[params]
author = "Eduardo Lemos Rocha"
description = "Duing Dev" # this will be added as metadata
posts = "posts" # content directory where to find home page posts; default searches in "posts" and "post"
pages = "pages"
logo = "/logo.svg"
logoAltText = "Logo"
favicon = "/favicon.png"
faviconIco = "/favicon.ico"
appletouch = "/apple-touch-icon.png"
svgicon = "/logo.svg"
showPostsLink = true # show or hide the link to the simple post list
extraContentDirs = [] # other content directories to render similarly to the home page
showcaseDir = "showcase" # create a content directory that shows a special showcase section in the home page
showSinglePageAsHome = true
homeSinglePage = "/home/home"
showTags = true # show the Tags menu item; default true
showRss = false # show the link for the RSS feed; default true
imageInArticlePreview = false # show images in article preview; default false
fitImageInArticlePreview = false # make article preview images fit the article preview instead of getting cropped
articleSummary = true # show a summary in article preview; default true
fontFamily = "JetBrains Mono" # changes the font, default "JetBrains Mono"
titleFontFamily = "JetBrains Mono" # font used for titles and headings
monospaceFontFamily = "JetBrains Mono" # changes the monospace font for code, default "JetBrains Mono"
# multipliers applied to font sizes, useful for custom fonts that may be too big or too small
titleFontSizeMultiplier = 1.0
mainFontSizeMultiplier = 1.0
monoFontSizeMultiplier = 1.0
contentWidth = "1000px" # maximum width of the site content, css syntax
paperCards = false # enable paper card style; default false
buttonTags = false # enable button tag style; default false
tagsInArticlePreview = true # enable tags list in the article preview card
gridView = false # show post list as a grid. goes well with paperCards
bigArticleTitle = false # makes the title in the single article view bigger
navtype = "standard" # changes the style of the pagination, available styles are: "standard", "circles"
enableShadow = false # shows a shadow around some elements
menuStyle = "standard" # changes the style of the main site navigation menu, available styles are: "standard", "buttons"
enableSearch = false # enable search page
#searchbarEverywhere = true # if the searchbar should be shown in every page; requires enableSearch
#searchMenuLink = false # add a search link to the navigation menu; requires enableSearch
#mobileHamburgerNav = false # alternative hamburger menu layout for the main nav menu when screen is small
relatedArticlesNum = 2 # how many related articles to show
randomRelated = false # sorts related articles in random order (randomized at built time)
[menu]
# these links will be added to the main navigation menu, sorted by weight
# other elements in this menu are added automatically from the "pages" folder
# the folder it will look into can be customized with the pages variable
# in params above
[[menu.icons]]
identifier = "email"
name = "Email"
url = "mailto:[email protected]"
weight = 5
[[menu.icons]]
identifier = "github"
name = "GitHub"
url = "https://github.com/EduardoLR10"
weight = 10
[[menu.icons]]
identifier = "discord"
name = "Discord"
url = "https://discordapp.com/users/246675375877390337"
weight = 15
[[menu.icons]]
identifier = "linkedin"
name = "Linkedin"
url = "https://www.linkedin.com/in/eduardo-lemos-rocha-3198a5149/"
weight = 20
[[menu.icons]]
identifier = "youtube"
name = "Dr.Nekoma"
url = "https://www.youtube.com/channel/UCMyzdYsPiBU3xoqaOeahr6Q"
weight = 30
[markup.goldmark.renderer]
unsafe = true
# this section is necessary if you want infinite scrolling
# it allows to output the article list as paged JSON so that "pages" can be retrieved via javascript
[outputs]
home = ["HTML", "JSON"]