-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
100 lines (99 loc) · 3.21 KB
/
config.php
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
<?php
return [
'production' => false,
'baseUrl' => '',
'values' => [
[
'title' => 'Mission',
'image' => '/assets/images/icons/mission.png',
'image_lg' => '/assets/images/icons/mission@2x.png',
'desc' => 'Encouraging youth empowerment and potential fulfillment through different activities',
],
[
'title' => 'Vision',
'image' => '/assets/images/icons/vision.png',
'image_lg' => '/assets/images/icons/vision@2x.png',
'desc' => 'Intellectually Empowered Youth',
],
[
'title' => 'Goal',
'image' => '/assets/images/icons/goal.png',
'image_lg' => '/assets/images/icons/goal@2x.png',
'desc' => 'Lorem ipsum dolore sit amet',
],
],
'impact' => [
[
'number' => '20',
'title' => 'projects completed',
],
[
'number' => '120',
'title' => 'volunteers',
],
[
'number' => '400',
'title' => 'events hosted',
],
[
'number' => '500',
'title' => 'community time',
],
],
'sponsors' => [
[
'image' => '/assets/images/sponsors/komuna.jpg',
'image_lg' => '/assets/images/sponsors/komuna@2x.jpg',
'alt' => 'Komuna e Gostivarit',
],
[
'image' => '/assets/images/sponsors/usembskopje.jpg',
'image_lg' => '/assets/images/sponsors/usembskopje@2x.jpg',
'alt' => 'US Embassy Skopje',
],
[
'image' => '/assets/images/sponsors/peacecorps.jpg',
'image_lg' => '/assets/images/sponsors/peacecorps@2x.jpg',
'alt' => 'Peace Corps',
],
[
'image' => '/assets/images/sponsors/usaid.jpg',
'image_lg' => '/assets/images/sponsors/usaid@2x.jpg',
'alt' => 'USAID',
],
],
'contact' => [
[
'icon' => '/assets/images/icons/location.png',
'icon_lg' => '/assets/images/icons/location@2x.png',
'name' => 'Major Cede Filiposki 158, <br> Gostivar 1230, <br> Republic of N. Macedonia',
],
[
'icon' => '/assets/images/icons/time.png',
'icon_lg' => '/assets/images/icons/time@2x.png',
'name' => 'Monday - Saturday: <br> 10:00 - 18:00',
],
[
'icon' => '/assets/images/icons/phone.png',
'icon_lg' => '/assets/images/icons/phone@2x.png',
'name' => '+389 70 692 549',
],
[
'icon' => '/assets/images/icons/mail.png',
'icon_lg' => '/assets/images/icons/mail@2x.png',
'name' => 'yepmk2015@gmail.com',
],
],
'getStartDate' => function ($page) {
return Datetime::createFromFormat('Y-m-d', $page->start_date)->format('F j, Y');
},
'getEndDate' => function ($page) {
return Datetime::createFromFormat('Y-m-d', $page->end_date)->format('F j, Y');
},
'collections' => [
'projects' => [
'path' => 'projects/{filename}',
'extends' => '_layouts.project',
],
],
];