-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
74 lines (67 loc) · 2.97 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ZEanth Laboratory — Paper Archive</title>
<meta name="description" content="Paper archive of ZEanth Laboratory — preprints and publications in computer science." />
<link rel="icon" href="https://avatars.githubusercontent.com/u/290281786?s=400&u=20010d1634539a17c0b9cc1fbcf1339d16052125&v=4" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/inter@5.0.0/index.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fontsource/jetbrains-mono@5.0.0/index.css" />
<link rel="stylesheet" href="assets/style.css" />
</head>
<body>
<div class="wrap">
<header>
<div class="header-inner">
<a class="brand" href="https://github.com/zeanth" target="_blank" rel="noopener">
<img src="https://avatars.githubusercontent.com/u/290281786?s=400&u=20010d1634539a17c0b9cc1fbcf1339d16052125&v=4" alt="ZEanth Laboratory" />
<div class="brand-text">
<span class="brand-name">ZEanth Laboratory</span>
<span class="brand-subtitle">ZEanth Laboratory from Vietnam with love</span>
</div>
</a>
<div class="header-right">
<span class="brand-updated" id="lastUpdated">Last updated —</span>
<nav class="header-nav">
<a href="https://github.com/zeanth" target="_blank" rel="noopener">GitHub</a>
<a href="rss.xml">RSS</a>
</nav>
</div>
</div>
</header>
<div class="search-bar">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="7"/>
<path d="M21 21l-4.3-4.3"/>
</svg>
<input type="text" id="searchInput" placeholder="Search papers, authors, categories..." />
</div>
<div class="filters">
<select class="filter-select mono" id="categoryFilter">
<option value="">All categories</option>
</select>
<select class="filter-select mono" id="statusFilter">
<option value="">All statuses</option>
</select>
<select class="filter-select mono" id="yearFilter">
<option value="">All years</option>
</select>
<select class="filter-select mono" id="sortOrder">
<option value="new">Newest first</option>
<option value="old">Oldest first</option>
<option value="title">Title A–Z</option>
</select>
</div>
<div class="result-count" id="resultCount"></div>
<main class="papers" id="papersList"></main>
<div class="pagination" id="pagination"></div>
<footer>
<span>© <span id="year"></span> ZEanth Laboratory · CS paper archive</span>
<a href="https://github.com/zeanth/zeanth.github.io" target="_blank" rel="noopener">GitHub →</a>
</footer>
</div>
<script src="assets/common.js"></script>
<script src="assets/listing.js"></script>
</body>
</html>