-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpessoalAtivosGSites.html
77 lines (64 loc) · 2.71 KB
/
pessoalAtivosGSites.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="img/virtus.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/font-awesome.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="./js/scripts.js"></script>
<!--- INCLUIR NOVOS PARTICANTES AQUI-->
<script src="./js/participantes.js"></script>
</head>
<body>
<p style="padding: 1px;"><strong></strong></p>
<div class="sessao">
<table width="82%" cellspacing="10" cellpadding="10">
<p style="padding-top: 0px; line-height: 0"><strong>Coordenador</strong></p>
<tbody id="perfilCoord">
<!-- Perfis serão adicionados aqui -->
</tbody>
</table>
<table width="82%" cellspacing="10" cellpadding="10">
<p style="padding-top: 10px; line-height: 0"><strong>Professores colaboradores</strong></p>
<tbody id="perfilProfColab">
<!-- Perfis serão adicionados aqui -->
</tbody>
</table>
<p style="padding-top: 10px; line-height: 0"><strong>Alunos bolsistas</strong></p>
<table width="82%" cellspacing="10" cellpadding="10">
<tbody id="perfisAlunos">
<!-- Perfis serão adicionados aqui -->
</tbody>
</table>
<p style="padding-top: 10px; line-height: 0"><strong>Alunos Voluntários</strong></p>
<table width="82%" cellspacing="10" cellpadding="10">
<tbody id="perfisVoluntarios">
<!-- Perfis serão adicionados aqui -->
</tbody>
</table>
</div>
</body>
</html>
<script>
const tbody1 = document.getElementById('perfilCoord');
perfilCoord.forEach((perfil) => {
tbody1.innerHTML += criarPerfil(perfil.imgUrl, perfil.nome, perfil.projeto, perfil.lattesUrl);
});
const tbody2 = document.getElementById('perfilProfColab');
perfisProfColab.forEach((perfil) => {
tbody2.innerHTML += criarPerfil(perfil.imgUrl, perfil.nome, perfil.projeto, perfil.lattesUrl);
});
const tbody3 = document.getElementById('perfisAlunos');
perfisAlunos.forEach((perfil) => {
tbody3.innerHTML += criarPerfil(perfil.imgUrl, perfil.nome, perfil.projeto, perfil.lattesUrl, perfil.linkedinUrl);
});
const tbody4 = document.getElementById('perfisVoluntarios');
perfisVoluntarios.forEach((perfil) => {
tbody4.innerHTML += criarPerfil(perfil.imgUrl, perfil.nome, perfil.projeto, perfil.lattesUrl, perfil.linkedinUrl);
});
</script>