-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path404.html
136 lines (73 loc) · 4.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<title>Machine Proof Group: 404 Not Found</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/group.css">
</head>
<body>
<div class="container">
<!-- This is a bit nasty, but it basically says be a column first, and on larger screens be a spaced out row -->
<div class="header d-flex
flex-column
flex-md-row justify-content-md-between">
<a href="/" class="">
<img src="/img/logo.jpg"
alt="CMU Lettermark" id="logo">
</a>
<ul class="nav nav-pills justify-content-center">
<li class="nav-item">
<a class="nav-link "
href="/index.html">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/index.html#people">
People
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/research.html">
Research
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/publications.html">
Publications
</a>
</li>
<li class="nav-item">
<a class="nav-link "
href="/software.html">
Software
</a>
</li>
</ul>
</div>
<h1>404 Not Found</h1>
<p>Sorry! The server can’t find that page.</p>
<p>Please consider trying to find what you need from <a href="/">the home page</a>.</p>
<p>If you think something might be broken, please send an email to <a href="mailto:our-group-webmaster@dept.example.edu">webmaster</a>.</p>
<div class="footer">
<p>
Our Group is primarily based in the Shanghai University Computer Engineering Science Department, with additional affiliations with Artificial Intelligence Institute.
<p>
<a href="https://www.shu.edu/legal/">Legal Info</a>
</div>
</div> <!-- /container -->
<!-- Support retina images. -->
<script type="text/javascript"
src="/js/srcset-polyfill.js"></script>
</body>
</html>