This repository has been archived by the owner on Jan 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
404.html
185 lines (162 loc) · 6.22 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test the Web Forward</title>
<!--[if lt IE 9]>
<script src="/vendor/html5shim.js"></script>
<![endif]-->
<link rel="shortcut icon" href="img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/styles/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="/styles/glyphicons.css" type="text/css" media="screen">
<link rel="stylesheet" href="/styles/pygments.css" type="text/css" media="screen">
<link rel="stylesheet" href="/styles/custom.css" type="text/css" media="screen">
<link rel="alternate" type="application/rss+xml" href="/feed.rss" title="Test the Web Forward Blog RSS feed">
</head>
<body data-spy="scroll" data-target="#toc-container" class=" ">
<div class="container">
<div class="text-right">
<img src="/assets/dinos-218x50.png" width="218" height="50">
</div>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Test the Web Forward</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse ">
<ul class="nav navbar-nav navbar-right">
<li><a href="/docs/">Docs</a></li>
<li><a href="/events/">Events</a></li>
<li><a href="/blog/">Blog</a></li>
</ul>
</div>
</nav>
<div role="main">
<div class="jumbotron text-center">
<h1>404 - Page Not Found</h1>
<p>It looks like we don't have the page you visited. Sorry! :(</p>
<p>You might find what you're looking for in the menu above or from the <a href="/">home page</a>. </p>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="col-md-4">
<p>Copyright © 2014 <a href="http://www.w3.org">W3C</a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>,
<a href="http://www.keio.ac.jp/">Keio</a>, <a href="http://ev.buaa.edu.cn/">Beihang</a>).</p>
</div>
<div class="col-md-4">
<p class="text-center"><a href="/"><img src="/assets/dinos-174x40.png" width="174" height="40" alt="Dinos"></a></p>
</div>
<div class="col-md-4">
<p class="text-right">
<a href="/discuss.html">Discuss</a> |
<a href="/docs/open-source.html">Contribute</a> |
<a href="/terms.html">Terms</a> |
<a href="/sponsors.html">Sponsors</a>
</p>
</div>
</div>
</footer>
<script src="/vendor/jquery-1.7.1.js"></script>
<script src="/scripts/bootstrap.min.js"></script>
<script>
var _scrollspy_refresh = $.fn.scrollspy.Constructor.prototype.refresh;
$.fn.scrollspy.Constructor.prototype.refresh = function() {
this.selector = this.selector.replace("li > ", "> ");
return _scrollspy_refresh.call(this);
}
$.fn.scrollspy.Constructor.prototype.activate = function (target) {
this.activeTarget = target
$(this.selector)
.removeClass('active')
var selector = this.selector
+ '[data-target="' + target + '"],'
+ this.selector + '[href="' + target + '"]'
var active = $(selector).addClass('active')
active.trigger('activate')
}
var ICONS = {
schedule: "clock",
schedules: "clock",
speaker: "bullhorn",
speakers: "bullhorn",
expert: "user",
experts: "user",
location: "google_maps",
requirement: "wrench",
requirements: "wrench",
faq: "circle_question_mark",
faqs: "circle_question_mark",
prize: "cup",
prizes: "cup",
sponsor: "heart",
sponsors: "heart",
link: "link",
links: "link",
about: "global",
getting_started: "hand_right",
initial_planning: "log_book",
communication: "volume_up",
resources: "sampler",
artwork: "picture",
host: "crown",
attendees: "conversation",
meetup_topics: "list"
};
function getIcon(id) {
id = id.split('-')[0];
var icon = ICONS[id];
if (!icon) return "";
return "<span class=\"glyphicon glyphicon-" + icon + "\"></span> ";
}
function getAnchor(id) {
return " <small><a class=anchor href=\"#" + id + "\"><span class=\"glyphicon glyphicon-link\"></span></a></small>";
}
var $toc = $("#toc");
if ($toc.length) {
var $headers = $("*[role=main] h2, .docs *[role=main] h3, .event-kits *[role=main] h3");
if ($headers.length) {
$toc.parents(".panel").show();
$headers.each(function() {
var $header = $(this);
var id = this.id || $header.text().replace(/\W+/g, '-').toLowerCase();
this.id = id;
var icon = getIcon(id);
var text = $header.html();
if (icon) {
$header.prepend(icon);
text += icon.replace("class=\"", "class=\"pull-right "); // UGLIEST
}
// Indent h3 subheaders
if($header.get(0).nodeName.toLowerCase() == "h3") {
text = "   "+text
}
$("<a id=\"" + id + "-link\" class=\"list-group-item\" href=\"#" + id + "\">" + text + "</a>").appendTo($toc);
});
}
}
$('.auto-popover').popover();
</script>
<script>
var _paq = _paq || [];
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
_paq.push(["trackPageView"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://tracking.webplatform.org/";
_paq.push(["setTrackerUrl", u+"js/"]);
_paq.push(["setSiteId", "7"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"js/"; s.parentNode.insertBefore(g,s);
})();
</script>
</body>
</html>