-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
44 lines (41 loc) · 1.37 KB
/
index.ejs
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- HTML5Shiv -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<![endif]-->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- CSS custumizado -->
<!-- <link rel="stylesheet" href="CAMINHODOCSSSSS"> -->
<title>converTOO</title>
<!-- ICON FROM FONTAWESOME -->
<link rel="icon" href="css/file-excel-solid.svg">
</head>
<body class="bg-light">
<div class="container mt-2">
<table class="table table-bordered">
<thead>
<tr>
<% header.forEach(column => { %>
<th><%= column %></th>
<% }) %>
</tr>
</thead>
<tbody>
<% body.forEach(rows => { %>
<tr>
<% rows.forEach(row => { %>
<td><%= row %> </td>
<% }) %>
</tr>
<% }) %>
</tbody>
</table>
</div>
</body>
</html>