-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.toml
167 lines (129 loc) · 3.75 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
160
161
162
163
164
165
166
167
# 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.chinuon.com/'
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 = 'Chinuon / hyaku-nigiri'
[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 = "Boilerplate website"
email = "[email protected]"
favicon = '/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 = "[email protected]"
[[params.social]]
alt = "github icon"
blank = true
icon = "/icons/github.svg"
name = "github"
url = "https://github.com/Chaitanyassr"
[[params.social]]
alt = "linkedin icon"
icon = "/icons/linkedin.svg"
name = "linkedin"
url = "https://www.linkedin.com/in/chinuon/"
[[params.social]]
alt = "Youtube icon"
icon = "/icons/youtube.svg"
name = "Youtube"
url = "https://www.youtube.com/channel/UCprKvfYuzxnSyET7XaAmREQ"
[[params.social]]
alt = "Instagram icon"
icon = "/icons/instagram.svg"
name = "Instagram"
url = "https://www.instagram.com/1st_incommand/?hl=en"
[[params.social]]
alt = "twitter icon"
blank = true
icon = "/icons/twitter.svg"
name = "twitter"
url = "https://twitter.com/ChinuonC"
[[params.social]]
alt = "facebook icon"
blank = true
icon = "/icons/facebook.svg"
name = "facebook"
url = "https://www.facebook.com/kumar.chaitanya.35/"
[[params.socialdemo]]
alt = "linkedin icon"
icon = "/icons/linkedin.svg"
name = "linkedin"
url = "https://www.linkedin.com/in/chinuon/"
[[params.socialdemo]]
alt = "Youtube icon"
icon = "/icons/youtube.svg"
name = "Youtube"
url = "https://www.youtube.com/channel/UCprKvfYuzxnSyET7XaAmREQ"
[[params.socialdemo]]
alt = "Instagram icon"
icon = "/icons/instagram.svg"
name = "Instagram"
url = "https://www.instagram.com/1st_incommand/?hl=en"
# Navigation bar
[menu]
[[menu.main]]
identifier = "Vedic Astrology" # identifier is use for translations
pre = "Vedic Astrology" # pre is inserted before the translation (icons, image, etc)
url = "/VedicAstrology/KnowYourDestiny/"
weight = 10
[[menu.main]]
identifier = "Home" # identifier is use for translations
pre = "Home" # pre is inserted before the translation (icons, image, etc)
url = "/"
weight = 20
[[menu.main]]
identifier = "" # identifier is use for translations
pre = "Curriculum Vitae" # pre is inserted before the translation (icons, image, etc)
url = "https://drive.google.com/file/d/1BCG6DR7RpMsPAJVkqdqLwzXlvZ435Ypo/view"
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
# Uncomment the following lines to add an italian translation.
# [languages.darkMode]
# contentDir = 'content/en'
# languageCode = 'en'
# Uncomment the following lines to add an spanish translation.
# [languages.es]
# contentDir = 'content/es'
# languageCode = 'es'
# languageName = 'Español'
# weight = 4