-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpessoalEgressosGSites.html
37 lines (34 loc) · 1.3 KB
/
pessoalEgressosGSites.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
<!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, height=device-height, 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>Egressos</strong></p>
<tbody id="perfisEgressos">
<!-- Perfis serão adicionados aqui -->
</tbody>
</table>
</div <div class="sessao">
</body>
</html>
<script>
const tbodyE = document.getElementById('perfisEgressos');
perfisEgressos.forEach((perfil) => {
tbodyE.innerHTML += criarPerfil(perfil.imgUrl, perfil.nome, perfil.projeto, perfil.lattesUrl, perfil.linkedinUrl);
});
</script>