-
Notifications
You must be signed in to change notification settings - Fork 3
/
bookmarks.html
101 lines (97 loc) · 2.85 KB
/
bookmarks.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
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--<script type="module" src="https://cdn.jsdelivr.net/gh/vanillawc/wc-monaco-editor/index.js"></script>-->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/dataTables.semanticui.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.js">
</script>
<style>
body {
font-size:16px;
}
a{
color:#000000;
}
</style>
</head>
<body>
<div class="twelve wide column" style="margin-top:5%;">
<div class="ui centered grid container">
<table id="example" class="ui celled table" style="width:100%">
<thead>
<tr>
<th>FileName</th>
<th>Date</th>
<th>Last Edit</th>
</tr>
</thead>
<tbody>
<tr>
<td class="collapsing">
<a href="https://trohs.xyz/codeforces">
<img class="ui avatar image" src="c-plusplus.svg" style="padding-right:5px;">code.cpp
</a>
</td>
<td>23/04/2021</td>
<td>9 hours ago</td>
</tr>
<tr>
<td>
<a href="https://trohs.xyz/codeforces">
<img class="ui avatar image" src="python.svg" style="padding-right:5px;">practical1.py</a>
</td>
<td>19/04/2021</td>
<td>1 month ago</td>
</tr>
<tr>
<td>
<a href="https://trohs.xyz/codeforces">
<img class="ui avatar image" src="c-plusplus.svg" style="padding-right:5px;">GT_prac1.cpp</a>
</td>
<td>23/05/2021</td>
<td>2 days ago</td>
</tr>
<tr>
<td>
<a href="https://trohs.xyz/codeforces">
<img class="ui avatar image" src="java.svg" style="padding-right:5px;">GT_prac2.java
</a>
</td>
<td>09/12/2020</td>
<td >10 hours ago</td>
</tr>
<tr>
<td>
<a href="https://trohs.xyz/codeforces">
<img class="ui avatar image" src="c.svg" style="padding-right:5px;">ads_prac.c
</a>
</td>
<td>23/04/2021</td>
<td>16 hours ago</td>
</tr>
</tbody>
<tfoot>
<tr>
<th colspan="3">
<div class="ui right floated primary labeled icon button">
<i class="plus circle icon" style="padding-right:5px;"></i> Create New
</div>
</th>
</tr>
</tfoot>
</table>
</div>
</div>
<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.24/js/dataTables.semanticui.min.js"></script>
<script>
$(document).ready(function() {
$('#example').DataTable({
"order": [[ 1, "desc" ]]
});
});
</script>
</body>
</html>