-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (99 loc) · 5.41 KB
/
index.html
File metadata and controls
101 lines (99 loc) · 5.41 KB
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Databases - Slides</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
<script src="https://kit.fontawesome.com/ee857b12ec.js" crossorigin="anonymous"></script>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar is-fixed-top" role="navigation" aria-label="main navigation" >
<div class="navbar-brand">
<a class="navbar-item" href="/">
<span class="icon is-large">
<i class="fas fa-database"></i>
</span>
<span class="is-size-5">Databases</span>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Theorie
</a>
<a class="navbar-item" href="https://github.com/HOGENT-Databases/DB1-Workshops" target="_blank">
Workshops
</a>
</div>
</nav>
<section class="section">
<div class="container">
<table class="table is-striped is-hoverable is-fullwidth">
<thead>
<tr>
<th>#</th>
<th>Hoofdstuk</th>
<th>Theorie</th>
<th>Workshops</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Praktische Afspraken</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1642697">Slides</a></td>
<td>-</td>
</tr>
<tr>
<td>2</td>
<td>Conceptueel Ontwerp</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1642696">Slides</a></td>
<td><a target="_blank" href="https://github.com/HOGENT-Databases/DB1-Workshops/blob/master/workshops/01-conceptueel_model/exercises.md">Workshop</a></td>
</tr>
<tr>
<td>3</td>
<td>Zwakke Entiteiten</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1653035">Slides</a></td>
<td><a target="_blank" href="https://github.com/HOGENT-Databases/DB1-Workshops/blob/master/workshops/02-zwakke_entiteiten/exercises.md">Workshop</a></td>
</tr>
<tr>
<td>4</td>
<td>EERD</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1662203">Slides</a></td>
<td><a target="_blank" href="https://github.com/HOGENT-Databases/DB1-Workshops/blob/master/workshops/03-EERD/exercises.md">Workshop</a></td>
</tr>
<tr>
<td>5</td>
<td>Relationeel Model</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1662942">Slides</a></td>
<td><a target="_blank" href="https://github.com/HOGENT-Databases/DB1-Workshops/blob/master/workshops/04-relationeel_model/exercises.md">Workshop</a></td>
</tr>
<tr>
<td>6</td>
<td>Normalisatie</td>
<td><a target="_blank" href="https://chamilo.hogent.be/index.php?go=CourseViewer&application=Chamilo%5CApplication%5CWeblcms&course=41388&tool=Document&publication_category=247468&browser=Table&tool_action=Viewer&publication=1663128">Slides</a></td>
<td><a target="_blank" href="https://github.com/HOGENT-Databases/DB1-Workshops/blob/master/workshops/05-normalisatie/exercises.md">Workshop</a></td>
</tr>
<tr>
<td>7</td>
<td>Verzamelingenleer</td>
<td><a target="_blank" href="slides/verzamelingenleer">Slides</a></td>
<td><a>-</a></td>
</tr>
<tr>
<td>8</td>
<td>SQL Introductie</td>
<td><a target="_blank" href="slides/sql">Slides</a></td>
<td><a>-</a></td>
</tr>
</tbody>
</div>
</section>
</body>
</html>