-
Notifications
You must be signed in to change notification settings - Fork 70
/
404.html
121 lines (121 loc) · 4.57 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<title>404 - Not Found Error - Apache Whimsy</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/assets/bootstrap-min.css"/>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#navbar_collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img title="Whimsy project home" alt="Whimsy hat logo" src="/whimsy.svg" height="30"/>
</a>
</div>
<div class="collapse navbar-collapse" id="navbar_collapse">
<ul class="nav navbar-nav">
<li>
<h1 class="navbar-btn"><span class="label label-danger">404 Error</span></h1>
</li>
<li>
<a href="https://github.com/apache/whimsy/">Code</a>
</li>
<li>
<a href="https://lists.apache.org/[email protected]">Questions</a>
</li>
<li>
<a href="/technology">About Whimsy</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<img title="Apache Home" alt="Apache feather logo" src="https://www.apache.org/img/feather_glyph_notm.png" height="30"/>
Apache
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a href="http://www.apache.org/licenses/">License</a>
</li>
<li>
<a href="http://www.apache.org/foundation/sponsorship.html">Donate</a>
</li>
<li>
<a href="http://www.apache.org/foundation/thanks.html">Thanks</a>
</li>
<li>
<a href="http://www.apache.org/security/">Security</a>
</li>
<li class="divider" role="separator"></li>
<li>
<a href="http://www.apache.org/">About The ASF</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="content container-fluid">
<div class="row">
<div class="col-md-8">
<div class="panel panel-danger">
<div class="panel-heading">
<h2 class="panel-title">
404 - Not Found
</h2>
</div>
<div class="panel-body">
<p class="lead">Whatever you're looking for is not there.
We'll double-check our crystal balls, but you should
probably try another <a href="/">magic link</a>.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">
Get Help!
</h3>
</div>
<div class="panel-body">
<ul>
<li>
<a href="mailto:[email protected]?subject=[404] Help finding:">Email dev@whimsical List</a>
</li>
<li>
<a href="https://lists.apache.org/[email protected]">Read our Mailing List</a>
</li>
<li>
<a href="https://github.com/apache/whimsy/tree/master/www">See The Website Code</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer container-fluid" style="background-color: #f5f5f5; padding: 10px;">
<p class="center">
Copyright © 2015-2024, the Apache Software Foundation. Licensed under the
<a rel="license" href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
|
<a href="https://www.apache.org/foundation/policies/privacy.html">Privacy Policy</a>
<br/>
Apache®, the names of Apache projects, and the multicolor feather logo are
<a href="https://www.apache.org/foundation/marks/list/">registered trademarks or trademarks</a>
of the Apache Software Foundation in the United States and/or other countries.
</p>
</div>
</div>
</body>
</html>