-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
159 lines (142 loc) · 3.79 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# General Settings
title = "Hannah Luebbering"
baseURL = "https://hluebbering.github.io" #YOUR SITE URL
languageCode = "en-us"
theme = "ryancv"
resourceDir = "resources"
publishDir = "docs"
paginate = 4
summaryLength = 20
DefaultContentLanguage = "en"
# Menu Settings
##
### to add or remove card (or menu item)
### param "name" - Menu item name
### param "pre" - Menu item icon class, all icons class you can see here https://ionicons.com/v4/
### param "identifier" - Menu item url slug
### param "url" - Menu item url
### param "sections" - list of sections what will be show of each card, all prebuild sections name see in documentations
[menu]
[[menu.main]]
identifier = "about"
name = "About"
pre = "fa-duotone fa-user"
url = "#about-card"
weight = 1
[menu.main.params]
builder = [
"testimonials"
]
[[menu.main]]
identifier = "banner"
name = "Banner"
pre = "fa-duotone fa-paper-plane"
url = "#contacts-card"
weight = 2
[menu.main.params]
builder = [
"banner"
]
#[[menu.main]]
# identifier = "about2"
# name = "About"
# pre = "fa-duotone fa-user"
# url = "#about-card"
# weight = 3
# [menu.main.params]
# builder = [
# "skills"
## "facts",
# ]
[[menu.main]]
identifier = "works"
name = "Projects"
pre = "fa-duotone fa-window"
url = "#works-card"
weight = 3
[menu.main.params]
builder = [
"portfolio"
]
[[menu.main]]
identifier = "blog"
name = "Posts"
pre = "fa-duotone fa-pencil"
url = "#blog-card"
weight = 4
[menu.main.params]
builder = [
"blog"
]
[[menu.main]]
identifier = "contacts"
name = "Contact"
pre = "fa-duotone fa-paper-plane"
url = "#contacts-card"
weight = 5
[menu.main.params]
builder = [
"contact-form"
]
#[[menu.main]]
# identifier = "gallery"
# name = "Gallery"
# pre = "fa-duotone fa-paper-plane"
# url = "#gallery-card"
# weight = 6
# [menu.main.params]
# builder = [
# "gallery"
# ]
# Main Settings
[params]
skinColor = "" #TEMPLATE SKIN COLOR: [ blue, green, orange, pink, purple, red ]. If empty colors taken from thenes/ryan/assets/scss/_settings.scss
skinDark = 0 #TEMPLATE UI: [ 1 - yes, 0 - no ]
rtl = 0 #TEMPLATE RTL MODE: [ 1 - yes, 0 - no ]
skinMinimal = 0 #TEMPLATE MINIMAL SKIN: [ 1 - yes, 0 - no ]
dateFormat = "January 2, 2006"
authorName = "Hannah Luebbering"
disqusComments = "your_disqus_shortname" #YOUR DISQUS COMMENTS SHORTNAME
formspreeURL = "https://formspree.io/f/your_api_key" #YOUR FORMSPREE URL
googleAnalytics = "" #YOUR GOOGLE ANALYTICS CODE
# Background
[params.background]
type = "default" #BACKGROUND TYPE: [ default, blured ]
# Sidebar
[params.sidebar]
enable = 1 #SIDEBAR SHOW: [ 1 - yes, 0 - no ]
search = 0 #SIDEBAR SEARCH WIDGET: [ 1 - yes, 0 - no ]
latestPosts = 0 #SIDEBAR LATEST POSTS WIDGET: [ 1 - yes, 0 - no ]
categories = 0 #SIDEBAR CATEGORIES TAXONOMY WIDGET: [ 1 - yes, 0 - no ]
tags = 0 #SIDEBAR TAG TAXONOMY WIDGET: [ 1 - yes, 0 - no ]
menuWidget = 0 #SIDEBAR MENU WIDGET: [ 1 - yes, 0 - no ]
# Animation Settings
[params.animation]
in = "fadeInLeft" #ANIMATION IN: [ rotateInUpLeft, rollIn, jackInTheBox, fadeIn, fadeInUp, fadeInLeft ]
out = "fadeOutLeft" #ANIMATION OUT: [ rotateOutUpLeft, rollOut, jackOutTheBox, fadeOut, fadeOutUp, fadeOutLeft ]
# Portfolio Settings
[params.portfolio]
homeNumOfItems = 12
[[params.portfolio.filters]]
name = "Web Development"
slug = "web_development"
[[params.portfolio.filters]]
name = "Data Science"
slug = "data_science"
[[params.portfolio.filters]]
name = "Machine Learning"
slug = "machine_learning"
[[params.portfolio.filters]]
name = "Mathematics"
slug = "mathematics"
# Sitemap Settings
[sitemap]
changefreq = "monthly"
priority = 0.5
filename = "sitemap.xml"
[outputs]
home = ["HTML", "RSS", "JSON"]
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true