-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.toml
163 lines (135 loc) · 4.15 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
######################## default configuration ####################
baseURL = "https://finteh.org"
title = "FinTechAssociation"
theme = "somrat"
# disable language
disableLanguages = [] # desable language from here
############################# Plugins ##############################
# CSS Plugins
[[params.plugins.css]]
link = "plugins/bootstrap/bootstrap.min.css"
[[params.plugins.css]]
link = "plugins/fontawesome/font-awesome.min.css"
[[params.plugins.css]]
link = "plugins/hover/hover.css"
[[params.plugins.css]]
link = "plugins/magnific-popup/magnific-popup.css"
[[params.plugins.css]]
link = "plugins/owl-carousel/owl.carousel.min.css"
[[params.plugins.css]]
link = "plugins/owl-carousel/owl.theme.default.min.css"
[[params.plugins.css]]
link = "plugins/text-animation/text-animation.css"
[[params.plugins.css]]
link = "https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&display=swap"
# JS Plugins
[[params.plugins.js]]
link = "plugins/jQuery/jquery.min.js"
[[params.plugins.js]]
link = "plugins/bootstrap/bootstrap.min.js"
[[params.plugins.js]]
link = "plugins/wow.min.js"
[[params.plugins.js]]
link = "plugins/text-animation/text-animation.js"
[[params.plugins.js]]
link = "plugins/jquery.waypoints.min.js"
[[params.plugins.js]]
link = "plugins/filterizr/jquery.filterizr.min.js"
[[params.plugins.js]]
link = "plugins/magnific-popup/jquery.magnific-popup.min.js"
[[params.plugins.js]]
link = "plugins/owl-carousel/owl.carousel.min.js"
############################## navigation ###############################
# English main menu
[[Languages.en.menu.main]]
name = "Home"
URL = "#home"
weight = 1
[[Languages.en.menu.main]]
name = "About us"
URL = "#about"
weight = 2
#[[Languages.en.menu.main]]
#name = "Services"
#URL = "#service"
#weight = 3
#[[Languages.en.menu.main]]
#name = "Portfolio"
#URL = "#portfolio"
#weight = 4
#[[Languages.en.menu.main]]
#name = "Testimonials"
#URL = "#testimonial"
#weight = 5
[[Languages.en.menu.main]]
name = "Contact"
URL = "#contact"
weight = 6
# Russian main menu
[[Languages.ru.menu.main]]
name = "Главная"
URL = "#home"
weight = 1
[[Languages.ru.menu.main]]
name = "О нас"
URL = "#about"
weight = 2
#[[Languages.ru.menu.main]]
#name = "Услуги"
#URL = "#service"
#weight = 3
#[[Languages.ru.menu.main]]
#name = "Портфолио"
#URL = "#portfolio"
#weight = 4
#[[Languages.ru.menu.main]]
#name = "Отзывы"
#URL = "#testimonial"
#weight = 5
[[Languages.ru.menu.main]]
name = "Контакты"
URL = "#contact"
weight = 6
#################### default parameters ################################
[params]
logo_light = "images/logo.png"
logo_dark = "images/logo-dark.png"
# Meta data
description = "Non-government organization FinTech Association: socialize for financial development"
author = "somrat"
# contact form action
contact_form_action = "https://formspree.io/xpzrgzjb" # contact form works with https://formspree.io
# Google Analitycs
google_analitycs_id = "UA-88015393-6" # your id
# Preloader
[params.preloader]
enable = true
preloader = "images/preloader.gif" # use jpg, png, svg or gif format.
############################# social site ########################
[[params.social]]
icon = "fa-telegram" # fontawesome icon 4.7.0 : https://fontawesome.com/v4.7.0/icons/
link = "https://t.me/finteh"
[[params.social]]
icon = "fa-github" # fontawesome icon 4.7.0 : https://fontawesome.com/v4.7.0/icons/
link = "https://github.com/finteh"
[[params.social]]
icon = "fa-linkedin" # fontawesome icon 4.7.0 : https://fontawesome.com/v4.7.0/icons/
link = "https://www.linkedin.com/company/finteh/"
################################### English language #####################################
[Languages.en]
languageName = "En"
languageCode = "en-us"
contentDir = "content/english"
weight = 1
home = "Home"
# copyright
copyright = "Theme was kindly provided by [somrat](https://somrat.netlify.com)"
################################### Russian language #####################################
[Languages.ru]
languageName = "Ru"
languageCode = "ru-ru"
contentDir = "content/russian"
weight = 2
home = "Сначала"
# copyright
copyright = "Тема любезно предоставлена автором [somrat](https://somrat.netlify.com)"