-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
185 lines (164 loc) · 5.86 KB
/
config.yaml
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
baseURL: https://example.com
languageCode: en-us
title: Personal website and blog
theme: hugo-refresh
# theme: ../..
########################################
######## Uncomment this option #########
########################################
# This options specify where to look for the images
# assetDir: "static"
# Option to specify the default language of the theme
# I.e., the landing language of your root
DefaultContentLanguage: en
## Option to disable additional language in your site.
# disableLanguages: ["ru"]
disableKinds: ["sitemap","RSS"]
# Option to specify that all links will be open in a new tab.
blackfriday:
hrefTargetBlank: true
Taxonomies:
tag: "tags"
# Supported fonts are:
# https://fonts.google.com/
# Icons taken from:
# https://konpa.github.io/devicon/
# https://bulkitv2.cssninja.io/_components-icons-fa.html
params:
# parameter used to specify the number of article in each row
# for the summary pages, the possible options are: 2, 3, 4, 5 or 6
articlesPerRow: 3
# parameter used to specify if you want to minify the imported js
jsMinify: false
# parameter used to specify if you want to minify the imported css
cssMinify: false
# option to specify the main colour of the theme
mainColour: "#F39200"
# summary options
summary:
# option to specify the default image in the summary list
# the starting folder is configure in "assetDir" of this file
defaultImage : "/images/default_summary.jpg"
# loading options
loading:
# option to specify the loading image
# the starting folder is configure in "assetDir" of this file
image: "/images/loaders/rings.svg"
# main pages options
mainPage:
# option to specify the main font of the theme
fontFamily: "Open Sans"
# sidebar options
sidebar:
# option to specify the logo of the sidebar
# the starting folder is configure in "assetDir" of this file
logo: "/images/refresh-square.svg"
# option to specify the font of the sidebar
fontFamily: "Open Sans" # "Open Sans"
# navbar options
navbar:
# option to specify the logo of the sidebar
fontFamily: "Open Sans"
# 404 page options
pagNotFound:
# option to specify the main picture of the sidebar
# the starting folder is configure in "assetDir" of this file
image: "/images/avataaars_404.png"
# option to specify the title of the 404 page
title: 404 Page Not Found :(
# option to specify the subtitle of the 404 page
subtitle: This is not the page you were looking for...
# option to specify the width of the image in the 404 page
imageWidth: 500px
# homepage options
homepage:
# option to specify the title in the homepage
title: Julia The White
# option to specify the subtitle in the homepage
subtitle: Personal website and blog
# option to specify image in the homepage
image: "/images/avataaars.png" # worker.svg
# option to specify the width of the image in the homepage
imageWidth: 500px
# footer options
footer:
# option to specify the logo in the footer
# the starting folder is configure in "assetDir" of this file
logo: "/images/refresh-square.svg"
# option to specify your contact email in the footer
email:
link: [email protected]
title: My Email
# option to specify your linkedin profile in the footer
linkedin:
link: your_linkedin_profile
title: My LinkedIn
# option to specify your facebook account in the footer;
# **uncomment** the lines below to show in footer
# facebook:
# link: your.username
# title: Facebook
# option to specify your github account in the footer;
# **uncomment** the below lines to show in footer
# github:
# link: username
# title: Github
# option to specify your twitter username in the footer;
# **uncomment** the below lines to show in footer
# twitter:
# link: username
# title: Twitter
# option to specify your instagram username in the footer;
# **uncomment** the below lines to show in footer
# instagram:
# link: username
# title: Instagram
# option to specify the copyright in the footer
copyright: Julia The White - 2020
###################################################################
################## multilanguage support options ##################
###################################################################
languages:
en:
languageName: English
weight: 1
ru:
languageName: Russian
weight: 2
# When Specifying different parameters for a different language
# you need to specify all the mandatory sub-parameters as well.
# E.g.: if you specify the "homepage" parameter then you need to
# specify all mandatory sub-parameters, e.g.: "title".
# See example below:
params:
homepage:
title: Julia белая краска
subtitle: Персональный сайт и блог
image: "/images/avataaars.png" # worker.svg
imageWidth: 500px
# Some sub-parameters of the "footer" parameter
# can be omitted because the code allows for them to be
# missed but they will treated as they do not exist,
# i.e., the parameters of the default language
# won't be inherited.
footer:
logo: "/images/refresh-square.svg"
email:
link: имя.фамилия@домен.com
title: Эл. адрес
linkedin:
link: your_linkedin_profile
title: LinkedIn
# facebook:
# link: your.username
# title: Facebook
# twitter:
# link: username
# title: Twitter
# instagram:
# link: username
# title: Instagram
# github:
# link: username
# title: Github
copyright: Julia белая краска - 2020