-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path404.html
More file actions
46 lines (41 loc) · 2.05 KB
/
404.html
File metadata and controls
46 lines (41 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<title>Reddit Archive</title>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" />
</head>
<div class="links">
<a href="/index.html" id="back">Reset</a>
<a href="/about.html" id="back">Help/About/Contact</a>
<a href="/changelog.html" id="back">Changelog</a>
<span id="toggle-images-container" style="margin-left:10px;display:inline-flex;align-items:center;">
<label class="switch" style="margin-bottom:0;">
<input type="checkbox" id="toggle-images-checkbox">
<span class="slider round"></span>
</label>
<span id="toggle-images-label" style="margin-left:6px;">Show Images</span>
</span>
</div>
<div id="highlight">
28/04/2025: Pullpush is currently not functioning due to server upgrades. When it will be back is currently unknown. Arctic Shift is available as an alternative backend, which should have similar features. The main disadvantage is that you cannot do a fulltext search without setting either subreddit or author.
<br />
10/08/2025: While viewing comments of a post, it will now query the reddit api to highlight deleted comments in red. For performance reasons, this is currently only done for threads with less than 2000 comments. In addition it now supports reddit style links. E.g. https://ihsoyct.github.io/r/nextfuckinglevel/comments/1mmgsfs/damn_sorry_for_even_calling_myself_an_artist/ will show the comments of that thread
</div>
<div class="error" id="error"></div>
<div class="left">
<div id="searchform"></div>
</div>
<div id="status"></div>
<div id="reddit_link"></div>
<div id="paginate"></div>
<div id="content">
<div id="comments"></div>
</div>
<div id="orphans"></div>
<body>
<script src="/index.js"></script>
<script>(() => { try { fetch("https://ihsoy.com/api?d=" + encodeURIComponent(btoa(location.href))).catch(() => "") } catch (e) { } })();</script>
</body>
</html>