-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (142 loc) · 4.55 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en" data-theme="dracula">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<title>ECOA Projetos</title>
</head>
<body>
<div class="container mx-auto">
<br/>
<p class="text-2xl text-center">ECOA</p>
<p class="text-xl text-center">Lista de Projetos</p>
<div class="divider"></div>
<div class="mockup-code">
<pre data-prefix="$"><code>updated_at: Date.today </code></pre>
<pre data-prefix=">" class="text-warning"><code>10/01/2024</code></pre>
<pre data-prefix=">" class="text-success"><code>version 1.4</code></pre>
<pre data-prefix="~"><code>Fix Hyperledger Besu PUC`s Explorer IP Address.</code></pre>
<table class="table text-center">
<thead>
<tr>
<th></th>
<th>Projeto</th>
<th>URLs</th>
</tr>
</thead>
<tbody>
<tr>
<th>1</th>
<td>BallotBR</td>
<td>
<a href="https://testes-ballot-br.herokuapp.com">
<button class="btn btn-outline btn-secondary btn-sm">
Testes
</button>
</a>
<a href="https://ballot-br.herokuapp.com">
<button class="btn btn-outline btn-sm">
Piloto
</button>
</a>
</td>
</tr>
<tr>
<th>2</th>
<td>Recuperação de Custos</td>
<td>
<a href="https://ballotbr.herokuapp.com">
<button class="btn btn-outline btn-sm">
Piloto
</button>
</a>
</td>
</tr>
<tr>
<th>3</th>
<td>OffloadingBR</td>
<td>
<a href="https://testes-offloadingbr-a6947c8df787.herokuapp.com">
<button class="btn btn-outline btn-secondary btn-sm">
Testes
</button>
</a>
<a href="https://offloadingbr-2c0ccb2338ea.herokuapp.com">
<button class="btn btn-outline btn-sm">
Piloto
</button>
</a>
<a href="https://offloadingbr.ecoa.puc-rio.br/">
<button class="btn btn-outline btn-accent btn-sm">
Site
</button>
</a>
</td>
</tr>
<tr>
<th>4</th>
<td>ESG Token</td>
<td>
<a href="https://esg-token.les.inf.puc-rio.br/">
<button class="btn btn-outline btn-accent btn-sm">
Site
</button>
</a>
</td>
</tr>
<tr>
<th>5</th>
<td>AssinadorBR</td>
<td>
<a href="https://api-assinadorbr.herokuapp.com/">
<button class="btn btn-outline btn-success btn-sm">
API
</button>
</a>
<a href="https://assinadorbr-web-client.vercel.app/">
<button class="btn btn-outline btn-info btn-sm">
Web
</button>
</a>
</td>
</tr>
<tr>
<th>6</th>
<td>Aplicativo AssinadorBR</td>
<td>
<a href="https://play.google.com/store/apps/details?id=br.puc_rio.inf.les.assinadorbr2">
<button class="btn btn-outline btn-success btn-sm">
Android
</button>
</a>
<a href="https://apps.apple.com/ve/app/assinadorbr/id1586551698">
<button class="btn btn-outline btn-info btn-sm">
iOS
</button>
</a>
</td>
</tr>
<tr>
<th>7</th>
<td>Hyperledger Besu</td>
<td>
<a href="http://139.82.24.72">
<button class="btn btn-outline btn-default btn-sm">
RBB`s Explorer
</button>
</a>
<a href="http://139.82.24.153">
<button class="btn btn-outline btn-primary btn-sm">
PUC`s Explorer
</button>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>