-
Notifications
You must be signed in to change notification settings - Fork 11
/
example.js
60 lines (60 loc) · 1.95 KB
/
example.js
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
module.exports = {
metrikaId: 0,
order: ['ru', 'en'],
favicons: {
ru: 'https://yastatic.net/s3/home-static/_/f0/f0597b6727cc67dceebc4e3a87caf571.png',
en: 'https://yastatic.net/s3/home-static/_/7c/7ccfee6f1e81b14c5bef535d1ad7b7e0.png'
},
cards: {
ru: {
lang: 'ru',
name: 'Иван Иванов',
position: 'Разработчик интерфейсов',
address: {
country: 'Россия',
city: 'Москва',
zip: '119021',
'street-address': 'ул. Льва Толстого, д. 16'
},
company: {
name: 'Яндекс',
site: 'https://yandex.ru'
},
contact: {
work: '+7 (495) 739-70-00',
workExt: '0000',
cell: '+7 (555) 123-45-66',
email: 'ivanivanovich@yandex-team.ru',
site: 'https://ivanivanovich.ru',
github: 'ivanivanovich',
twitter: 'ivanivanovich',
skype: 'ivanivanovich'
}
},
en: {
lang: 'en',
name: 'Ivan Ivanov',
position: 'UI Developer',
address: {
country: 'Russia',
city: 'Moscow',
zip: '119021',
'street-address': '16, Leo Tolstoy St.'
},
company: {
name: 'Yandex',
site: 'https://yandex.com'
},
contact: {
work: '+7 (495) 739-70-00',
workExt: '000',
cell: '+7 (555) 123-45-67',
email: 'ivanivanovich@yandex-team.ru',
site: 'https://ivanivanovich.ru/#en',
skype: 'ivanivanovich',
github: 'ivanivanovich',
twitter: 'ivanivanovich'
}
}
}
};