-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
93 lines (79 loc) · 2.13 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
######################## default configuration ####################
baseURL = "https://examplesite.com"
title = "OMEGA"
theme = "omega"
# google analytics
googleAnalytics = "" # example : UA-123-45
[markup.goldmark.renderer]
unsafe= true
######################### navigation ##############################
[[menu.main]]
name = "Home"
pre = ""
url = "/"
weight = 1
[[menu.main]]
name = "About Us"
pre = "#"
url = "mission"
weight = 2
[[menu.main]]
name = "What We Do"
pre = "#"
url = "products"
weight = 3
[[menu.main]]
name = "Meet the Team"
pre = ""
url = "members"
weight = 4
[[menu.main]]
name = "Contact"
pre = "#"
url = "contact"
weight = 5
#################### default parameters ################################
[params]
logo = "images/combined.png"
logo_width = "300px"
# Meta data
description = "This is meta description"
author = "Themefisher"
# contact info
contact_info = "6 MetroTech Center <br>Brooklyn, NY"
# Preloader
preloader = true
# google map
[params.map]
enable = true
gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyCC72vZw-6tGqFyRhhg5CkF2fqfILn2Tsw"
map_center_lat = "40.82000"
map_center_lng = "-74.654851"
map_position_lat = "40.695396"
map_position_lng = "-73.986738"
map_marker = "images/map-marker.png"
# cookies
[params.cookies]
enable = true
expire_days = 2
############################# social site ########################
[[params.social]]
title = "emal"
icon = "fa-envelope" # fontawesome icon pack v4.7 https://fontawesome.com/v4.7.0/icons/
link = "mailto:[email protected]"
[[params.social]]
title = "facebook"
icon = "fa-facebook" # fontawesome icon pack v4.7 https://fontawesome.com/v4.7.0/icons/
link = "https://www.facebook.com/nyurdt"
[[params.social]]
title = "twitter"
icon = "fa-twitter" # fontawesome icon pack v4.7 https://fontawesome.com/v4.7.0/icons/
link = "https://twitter.com/nyurdt"
[[params.social]]
title = "instagram"
icon = "fa-instagram" # fontawesome icon pack v4.7 https://fontawesome.com/v4.7.0/icons/
link = "http://instagram.com/nyurdt"
[[params.social]]
title = "github"
icon = "fa-github" # fontawesome icon pack v4.7 https://fontawesome.com/v4.7.0/icons/
link = "https://github.com/nyu-rdt"