-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
128 lines (111 loc) · 3.06 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
# Use an empty string if you have multiple domain linking to your website
# This string is used to generate the absolute URL for your assets.
baseURL = 'https://www.ksenia.dev/'
defaultContentLanguage = 'en'
# Emoji in markdown files
enableEmoji = true
languageCode = 'en-us'
# Number of blog post per page
paginate = 10
theme = 'pico'
# Title of the website is used for the meta tag title
# and the square icon (not the favicon)
title = 'Ksenia Burlachenko'
googleAnalytics = "UA-135168444-1"
# Disable tags & categories
disableKinds = ["taxonomy", "taxonomyTerm"]
# S3 requires ugly urls
uglyURLs = true
[params]
customCSS = [
"style/style.css",
"style/theme.sass",
] # Path relative to assets folder
customJS = ["js/console.js"] # Path relative to assets folder
# Homepage description
# For blog page description you can overwrite it
# in the front matter
description = "Ksenia Burlachenko"
email = "ksenia@ksenia.dev"
favicon = '/icons/favicon.ico'
# Dark mode support
# Supported value are :
# - off
# - always
# If commented the theme will use the browser theme.
darkMode = 'always'
# Social parameters for contact_icons widget
[[params.social]]
alt = "email icon"
icon = "/icons/email.svg"
name = "email"
url = "mailto:ksenia@ksenia.dev"
[[params.social]]
alt = "github icon"
blank = true
icon = "/icons/github.svg"
name = "github"
url = "https://github.com/thisiskseniab"
[[params.social]]
alt = "linkedin icon"
blank = true
icon = "/icons/linkedin.svg"
name = "linkedin"
url = "https://www.linkedin.com/in/kseniaburlachenko/"
[[params.social]]
alt = "instagram icon"
blank = true
icon = "/icons/instagram.svg"
name = "instagram"
url = "https://www.instagram.com/thisiskseniab/"
# Navigation bar
[menu]
[[menu.main]]
identifier = "home" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/"
weight = 10
[[menu.main]]
identifier = "about" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/about.html"
weight = 20
[[menu.main]]
identifier = "contact" # identifier is use for translations
pre = "" # pre is inserted before the translation (icons, image, etc)
url = "/#contact"
weight = 30
# Syntax highlightning
[markup.highlight]
guessSyntax = true
lineNumbersInTable = true
noClasses = false # Set to false to use the Pico default theme.
tabWidth = 2
# [taxonomies]
# category = "categories"
# tag = "tags"
# Translation
# English, French and Italian are supported but you can contribute
# by adding translation to i18n/ folder.
[languages.en]
contentDir = 'content/en'
languageCode = 'en'
languageName = 'English'
weight = 0
# [languages.fr]
# contentDir = 'content/fr'
# languageCode = 'fr'
# languageName = 'Français'
# weight = 2
# Uncomment the following lines to add an italian translation.
# [languages.it]
# contentDir = 'content/it'
# languageCode = 'it'
# languageName = 'Italiano'
# weight = 3
# Uncomment the following lines to add an spanish translation.
# [languages.es]
# contentDir = 'content/es'
# languageCode = 'es'
# languageName = 'Español'
# weight = 4