This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (58 loc) · 2.5 KB
/
Copy pathindex.html
File metadata and controls
71 lines (58 loc) · 2.5 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
<!DOCTYPE html>
<!--
Paper Pulse - Research Paper Aggregator
Copyright (C) 2024-2026 Paper Pulse Contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paper Pulse - Research Paper Aggregator</title>
<link rel="stylesheet" href="styles.css">
<link rel="alternate" type="application/rss+xml" title="Paper Pulse RSS Feed" href="feed.xml">
</head>
<body>
<h1>Paper Pulse</h1>
<p class="subtitle">Keyword-based research paper aggregation from arXiv and IACR | <a href="feed.xml">RSS Feed</a></p>
<div class="controls">
<div class="search-box">
<input type="text" id="searchInput" placeholder="Search by title, author, or keywords...">
</div>
<div class="filters">
<select id="sourceFilter">
<option value="all">All Sources</option>
<option value="arXiv">arXiv</option>
<option value="IACR">IACR</option>
</select>
<select id="sortBy">
<option value="date-desc">Newest First</option>
<option value="date-asc">Oldest First</option>
<option value="title">Title A-Z</option>
</select>
<button id="exportAllBtn" class="export-btn">Export All as BibTeX</button>
</div>
</div>
<div id="stats" class="stats"></div>
<div id="papersList" class="papers-list">
<div class="loading">Loading papers...</div>
</div>
<div id="pagination"></div>
<footer>
<p>Last updated: <span id="lastUpdated">-</span></p>
<p>Data fetched daily from arXiv and IACR ePrint Archive | <a href="feed.xml">RSS Feed</a></p>
</footer>
<!-- Marked.js for Markdown parsing -->
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="app.js"></script>
</body>
</html>