-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (42 loc) · 1.07 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
---
layout: base
---
<html>
<head>
<title>Daftar Skripsi Fasilkom UI</title>
<link rel="stylesheet" href="//cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" />
<style>
.hide-while-loading { display: none; }
.hidden { display: none; }
.loading { color: white; background: red; padding: 15px; }
</style>
</head>
<body>
<h1>Daftar Skripsi Fasilkom UI</h1>
<a href="http://github.com/mufid/lontarcs-parser">Repo utama</a>
<div class="show-while-loading loading">
Memuat...
</div>
<div>
<table>
<thead>
<th>Author</th>
<th>Year</th>
<th>Title</th>
<th>Call Number & Link</th>
</thead>
<tbody>
{% for thesis in site.data.skripsi %}
<tr>
<td> {{ thesis.author}} </td>
<td> {{ thesis.year}} </td>
<td> {{ thesis.title}} </td>
<td> <a href="http://lontar.cs.ui.ac.id/Lontar/opac/themes/newui/{{thesis.link}}"> {{ thesis.call_number }} </a> </td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% include _scripts.html %}
</body>
</html>