-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.16 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" prefix="og: http://ogp.me/ns#">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<head>
<title>Index - Botjagwar</title>
<meta content="">
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="lib/datatable/jquery.dataTables.min.css"/>
<link rel="stylesheet" href="/css/style.css"/>
<style>
</style>
<script type="text/javascript" src='lib/vue.js'></script>
<!--<script type="text/javascript" src='axios.js'></script>-->
</head>
<script type="module" src='js/header.js'></script>
<script type="module" src="js/utils.js"></script>
<script type="module" src='main.js'></script>
<body>
<div id='app'>
<botjagwar-header></botjagwar-header>
<div style="margin:5%;">
<span v-bind='isLoading' v-if='isLoading'>Loading</span>
<h1>Language list</h1>
<p>
You will find the list of all languages currently in use in the local dictionary below.<br/>
Click on the langugage links for a dictionary in that language.
</p>
<p>
Currently only the malagasy view is supported.
</p>
<span v-for="language in languages" style="margin-right:20px">
<span class="badge badge-light">
<a :href="'/dictionary.html?language=' + language.language">{{language.language}}</a>
</span>
<a :href="'/dictionary.html?language=' + language.language">{{language_mapping[language.language]}}</a>
({{language.entries}})
</span>
</div>
</div>
<!-- <script type="text/javascript" src='lib/jquery-3.4.1.js'></script>-->
<!-- <script type="text/javascript" src='lib/datatable/jquery.dataTables.min.js'></script> -->
<script type="text/javascript" src='lib/bootstrap/js/bootstrap.js'></script>
<!-- <script type="text/javascript">
// Basic example
$(document).ready(function () {
$('#languageTable').DataTable({
"paging": true // false to disable pagination (or any other option)
});
$('.dataTables_length').addClass('bs-select');
});
</script>
-->
</body>
</html>