-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblog_posts.html
58 lines (50 loc) · 1.82 KB
/
blog_posts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Maltemo">
<meta name="description" content="Maltemo's personal website">
<meta name="keywords" content="CTF,write-ups,security,maltemo">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Maltemo"/>
<meta name="twitter:description" content="Maltemo's personal website"/>
<meta property="og:title" content="Maltemo" />
<meta property="og:description" content="Maltemo's personal website" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://maltemo.github.io/" />
<base href="https://maltemo.github.io/">
<title>Maltemo</title>
<link rel="canonical" href="https://maltemo.github.io/">
<link rel="icon" type="image/png" href="assets/images/favicon-32x32.png" sizes="32x32">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for maltemo.github.io" href="/feed.xml" />
</head>
<body>
<main>
<div id="navigation"></div>
<div>
<label for="sort_options">Sort blog-posts by :</label>
<select id="sort_options">
<option value="0" selected>date (desc)</option>
<option value="1">date (asc)</option>
</select>
</div>
<table id="tab_blog_posts" class="center_table">
<caption>Write Up List</caption>
<thead>
<tr>
<th>Title</th>
<th>Release Date</tr>
</tr>
</thead>
<tbody id="tab_body_blog_posts"></tbody>
</table>
<footer></footer>
</main>
</body>
<script src="assets/js/utils.js"></script>
<script src="assets/js/template.js"></script>
<script src="assets/js/list.js"></script>
<script src="assets/js/blog-posts.js"></script>
</html>