forked from texfaq/texfaq.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
53 lines (47 loc) · 1.68 KB
/
404.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
---
permalink: /404.html
---
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<title>Page not found</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
<style>
body {overflow-y: scroll}
a code.highlighter-rouge { color: inherit}
a:hover, a:focus { text-decoration:underline; font-weight:inherit}
</style>
<script>
// lowercase the URL except for /FAQ-
var lc = document.location.href.toLowerCase()
var newurl=lc.replace(/\/(faq-|contributing|license|changelog)/,
function(v) { return v.toUpperCase(); })
if(newurl !==document.location.href) window.location.replace(newurl);
</script>
</head>
<body>
<div class="wrapper">
<header>
{% if site.logo %}
<a href="{{ "/" | absolute_url }}">
<img src="{{site.logo | relative_url}}" alt="{{ site.title | default: site.github.repository_name }}" />
</a>
{% else %}
<h1><a href="{{ "/" | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
{% endif %}
<p>Frequently Asked Question List for TeX</p>
</header>
<section>
<h1>Page not Found</h1>
<p>Page not found.</p>
<p><a href="/">Try searching the main FAQ index.</a></p>
</section>
</div>
</body>
</html>