-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetapas.js
50 lines (50 loc) · 1.33 KB
/
etapas.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
let etapas = [
{
titulo:'VEREADOR',
numeros: 5,
candidatos: [
{
numero: '38111',
nome: 'Fulano de Tal',
partido: 'ABC',
fotos:[
{url:'pers-1.jpeg', legenda: 'Vereador'}
]
},
{
numero: '77222',
nome: 'Betrano da Silva',
partido: 'DEFG',
fotos:[
{url:'pers-2.jpeg', legenda: 'Vereador'}
]
},
]
},
{
titulo:'PREFEITO',
numeros: 2,
candidatos: [
{
numero: '99',
nome: 'Ciclano',
partido: 'ABC',
vice: 'Cic',
fotos: [
{url: 'pers-3.jpeg', legenda: 'Prefeito'},
{url: 'pers-4.jpeg', legenda: 'Vice-Prefeito', small: true}
]
},
{
numero: '84',
nome: 'Zulano',
partido: 'QWERTY',
vice: 'Zul',
fotos: [
{url: 'pers-6.jpeg', legenda: 'Prefeito'},
{url: 'pers-5.jpeg', legenda: 'Vice-Prefeito', small: true}
]
},
]
}
];