forked from tuna/mirror-web
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
69 lines (67 loc) · 2.54 KB
/
Copy path404.html
File metadata and controls
69 lines (67 loc) · 2.54 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
---
permalink: /404.html
---
<!DOCTYPE html>
<html>
{% capture metaDesc %}Your requested resources not found{% endcapture %}
{% include head.html cattitle="404" metaDesc=metaDesc notArticle=true%}
<body>
{% include nav.html %}
<div id="mirrors">
<div class="spacing hidden-xs"></div>
<div class="container">
<div class="row">
<div class="not-found">
{% if site.meow_404 %}
<div class="not-found-bg"></div>
{% endif %}
<div class="not-found-hint">
<div class="not-found-code">
404 NOT FOUND
</div>
{% if site.meow_404 %}
<span class="thuhidden">Meow,Tuna</span> has been eaten
{% endif %}
</div>
<div class="not-found-text thuhidden">
If you think there might be something wrong, welcome to
<a href="https://github.com/twdsco/twds-mirror-web/issues/new/choose">
{% fa_svg fab.fa-github %} twdsco/twds-mirror-web
</a>
Submit
<a href="https://github.com/twdsco/twds-mirror-web/issues/new?labels=Service+Issue,404&template=2-bug_report.md" id="new_issue_bug">error report</a>
or
<a href="https://github.com/twdsco/twds-mirror-web/issues/new?labels=MirrorRequest&template=1-mirror_request.md" id="new_issue_mr">mirror request</a>
</div>
<div class="not-found-links">
<a class="not-found-link" href="javascript:history.back()">
{% fa_svg fas.fa-arrow-left %} Back
</a>
<a class="not-found-link" href="/">
Mirror list {% fa_svg fas.fa-arrow-right %}
</a>
</div>
</div>
</div>
</div><!--/container -->
</div><!--/mirrors -->
{% include footer.html %}
<script type="application/javascript">
(function(){
var tag = "[" + "{{ site.issue_tag }}" + "]";
var bugLink = document.getElementById("new_issue_bug");
var bugURL = new URL(bugLink.href);
bugURL.searchParams.append("title", tag + "404 at " + location.pathname);
bugLink.href = bugURL.href;
var mrLink = document.getElementById("new_issue_mr");
var mrURL = new URL(mrLink.href);
mrURL.searchParams.append("title", tag + "Mirror Request for new mirror " +
location.pathname.split('/')[1]);
mrLink.href = mrURL.href;
})();
</script>
</body>
</html>
<!--
vim: ts=2 sts=2 sw=2 noexpandtab
-->