-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathetapas.js
66 lines (66 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
let etapas = [
{
titulo: 'VEREADOR',
numeros: 5,
candidatos: [
{
numero: '13222',
nome: 'Cachorrão',
partido: 'PT',
fotos: [
{url:'vereador_2.jpg', legenda: 'Vereador'}
]
},
{
numero: '77213',
nome: 'Mano Esquilo',
partido: 'PT',
fotos: [
{url:'vereador_1.jpg', legenda: 'Vereador'}
]
},
{
numero: '12113',
nome: 'Cachorra',
partido: 'PT',
fotos: [
{url: 'vereador_3.jpg', legenda: 'Vereadora'}
]
},
{
numero: '13131',
nome: 'Leco Teco',
partido: 'PT',
fotos: [
{url: 'vreador_4.jpg', legenda: 'Vereador'}
]
},
]
},
{
titulo: 'PREFEITO',
numeros: 2,
candidatos: [
{
numero: '22',
nome: 'Gorducho',
partido: 'PT',
vice: 'Monarka',
fotos: [
{url: 'prefeito.jpg', legenda: 'Prefeito'},
{url: 'vice_prefeito.jpg', legenda: 'Vice-Prefeito', small: true}
]
},
{
numero: '13',
nome: 'Boladão',
partido: 'PKT',
vice: 'Aldair da Senha',
fotos: [
{url: 'prefeito_2.jpg', legenda: 'Prefeito'},
{url: 'vice_prefeito_2.jpg', legenda: 'Vice-Prefeito', small: true}
]
},
]
}
];