forked from ccuffs/horario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 2.14 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="pt-BR" xml:lang="pt-BR">
<head>
<title>UFFS - Ciência da Computação</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" media="screen" href="./css/bootstrap.min.css" />
<link rel="stylesheet" media="all" href="./css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" media="all" href="./css/main.css?202002181133" type="text/css" />
</head>
<body id="top">
<div class="container-fluid">
<div class="row hero">
<div class="col-9 content">
<div class="icon" style="float:left; height: 100%; margin-right: 25px;"><i class="fa fa-calendar" style="font-size: 90px; margin-top: 20px;"></i></div>
<h2>Horários</h2>
<strong>Ciência da Computação</strong>
<p>Universidade Federal da Fronteira Sul</p>
<p>
<i class="fa fa-envelope-o" title="Em caso de dúvidas, escreva para o e-mail [email protected]"></i>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<div class="col-3 text-right seletor-pediodo">
<label for="periodo">Escolha o período:</label>
<select name="periodo" id="periodo">
<option value="2020.1">2020.1</option>
<option value="2019.2">2019.2</option>
</select>
</div>
</div>
<div id="banner"></div>
<div id="viewer"></div>
</div>
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.bundle.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./js/viewer.js?202002181138"></script>
<script>
$(function(){
var viewer = new Horarios.Viewer();
viewer.init({
schedule: './2020.1/data/schedule-2020-1.json',
groups: './2020.1/data/groups-2020-1.json',
meta: './2020.1/data/meta-2020-1.json'
});
});
</script>
</body>
</html>