-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwiki4.html
More file actions
40 lines (39 loc) · 1.69 KB
/
wiki4.html
File metadata and controls
40 lines (39 loc) · 1.69 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
<!DOCTYPE html>
<html lang="nl" xml:lang="nl">
<head>
<title>Wiki - Bladeren</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" >
</head>
<body onload="init()">
<br>
<br>
<div id="wiki" v-cloak class="container" style="width: 100vw; height: 100vh;">
<button type="button" v-on:click="nextTerm()" class="btn btn-primary float-right">Volgende term</button>
<span class="float-right"> </span>
<button type="button" v-on:click="previousTerm()" class="btn btn-primary float-right">Vorige term</button>
<br>
<h5>{{ currentTerm.term }}</h5>
<br>
<span><b>Definities</b></span>
<br>
<ul class="list-group">
<li class="list-group-item list-group-item-success" v-for="definition in currentTerm.definitions">
{{ definition }}
</li>
</ul>
<br>
<span><b>Voorbeelden</b></span>
<br>
<ul class="list-group">
<li class="list-group-item list-group-item-primary" v-for="example in currentTerm.examples">
{{ example }}
</li>
</ul>
<br>
<br>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="js/wiki4.js?date=20201024a"></script>
</body>
</html>