-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
63 lines (63 loc) · 1.55 KB
/
config.js
File metadata and controls
63 lines (63 loc) · 1.55 KB
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
// we use JavaScript instead of JSON
// the config method is defined in ghus.js
/* global config */
config({
// set name of your preferred theme name here.
// You can also set the URL to a custem theme CSS file
theme: 'default',
// content
name: 'GHUS!',
location: 'Europe, baby',
description: 'Nairobi’s Innovation Hub for the technology community',
coreMembers: [
{
name: 'Emmanuel Kala',
role: 'Developer',
github: 'ekala',
gravatar: '8fe18e746dcfdbb1ab8be5089834cf37'
},
{
name: 'Linda Kamau',
role: 'Developer',
github: 'kamaulynder',
gravatar: 'caf7b2cf0216b8dcd2140f5972cec81c'
},
{
name: 'Charles Kithika',
role: 'Developer',
github: 'ckithika',
gravatar: '3fbf25a9196fee9fa570d451ac567f3d'
},
{
name: 'Josephine Nekesa Were',
role: 'Director of Operations',
github: 'Nekesa',
gravatar: '9cbf856ed95cdcaddc22dc12a9bd6156' }
],
communityMembers: [
{
name: 'Angela Oduor',
role: 'Developer',
github: 'aoduor',
gravatar: '82b7c3fab9a95ad48549827c2feaf996'
},
{
name: 'Erik Hersman',
role: 'Founder',
github: 'ehersman',
gravatar: 'b5afea347832d7bee1fcfc5c950a8893'
},
{
name: 'Caine Wanjau',
role: 'Developer',
github: 'cwanjau',
gravatar: '32eac233b9003db979848b09daf5b9cd'
},
{
name: 'Marie Githinji',
role: 'Program Manager',
github: 'mariegithinji',
gravatar: '4d1edbc93ba83e1d764c2ad48ab1d168'
},
]
});