This repository has been archived by the owner on Mar 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
133 lines (133 loc) · 7.04 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>InfoJr UFBA - Treinamentos</title>
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<link rel="stylesheet" href="vendor/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/assets/css/devicons.min.css">
<link rel="stylesheet" href="vendor/assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/application.css">
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#main_navbar">
<span class="sr-only">Navegar</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="assets/img/logo.png" alt="InfoJr UFBA"></a>
</div>
<div class="collapse navbar-collapse" id="main_navbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Treinamentos</a></li>
</ul>
</div>
</div>
</nav>
<main class="container">
<div class="row-fluid">
<div class="col-xs-12">
<div class="table-responsive">
<table class="table table-striped">
<tbody>
<tr>
<td>
<a href="empreendendo-o-futuro/index.html" class="icon-link">
<i class="glyphicon glyphicon-signal icon-2x entrepreneurship-color"></i>
</a>
<a href="empreendendo-o-futuro/index.html" class="middle-aligned">
Empreendendo o futuro
</a>
</td>
</tr>
<tr>
<td>
<a href="git/index.html" class="icon-link">
<i class="devicons devicons-git icon-2x git-color"></i>
</a>
<a href="git/index.html" class="middle-aligned">Git</a>
</td>
</tr>
<tr>
<td>
<a href="javascript/index.html" class="icon-link">
<i class="devicons devicons-javascript_badge icon-2x javascript-color"></i>
</a>
<a href="javascript/index.html" class="middle-aligned">
JavaScript
</a>
</td>
</tr>
<tr>
<td>
<a href="html_css/index.html" class="icon-link">
<i class="devicons devicons-html5 icon-2x html5-color"></i>
</a>
<a href="html_css/index.html" class="middle-aligned">
HTML/CSS
</a>
</td>
</tr>
<tr>
<td>
<a href="capacitacao-externa/index.html" class="icon-link">
<i class="devicons devicons-github icon-2x github-color"></i>
</a>
<a href="capacitacao-externa/index.html" class="middle-aligned">Git&Github Externo</a>
</td>
</tr>
<tr>
<td>
<a href="php_ilp_20161/index.html" class="icon-link">
<i class="devicons devicons-php icon-2x php-color"></i>
</a>
<a href="php_ilp_20161/index.html" class="middle-aligned">PHP 2016_1</a>
</td>
</tr>
<tr>
<td>
<a href="sql_pdo/index.html" class="icon-link">
<i class="devicons devicons-mysql icon-2x php-color"></i>
</a>
<a href="sql_pdo/index.html" class="middle-aligned">SQL/PDO</a>
</td>
</tr>
<tr>
<td>
<a href="tagging-in-git/index.html" class="icon-link">
<i class="fa fa-tags icon-4x tagging-color"></i>
</a>
<a href="tagging-in-git/index.html" class="middle-aligned">
Semântica de Versionamento com Git & GitHub
</a>
</td>
</tr>
<tr>
<td>
<a href="negociacao/" class="icon-link">
<img src="negociacao/assets/img/2.png" width="30px">
</a>
<a href="negociacao/" class="middle-aligned">
Negociação
</a>
</td>
</tr>
</tbody>
<thead>
<tr>
<th>Nome</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</main>
<script src="vendor/reveal.js/js/jquery.min.js"></script>
<script src="vendor/reveal.js/js/bootstrap.min.js"></script>
</body>
</html>