-
Notifications
You must be signed in to change notification settings - Fork 37
/
404.html
78 lines (72 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>404: Page Not Found</title>
<link rel="icon" href="http://docs.csharpsdk.org/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="http://docs.csharpsdk.org/favicon.ico" type="image/x-icon">
<meta name="robots" content="noindex,nofollow" />
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="/assets/css/bootstrap.css" rel="stylesheet">
<link href="/assets/css/style.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28972181-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<a href="http://github.com/facebook-csharp-sdk/facebook-csharp-sdk"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">Facebook SDK for .NET</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="/docs">Docs</a></li>
<li><a href="/docs/reference">SDK Reference</a></li>
<li><a href="/docs/windows">Windows 8</a></li>
<li><a href="/docs/phone">Windows Phone</a></li>
<li><a href="/docs/web">Web</a></li>
<li><a href="/docs/about">About</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="top" class="container content">
<div class="main-container">
<div class="error-container">
<div class="header">
<h1>Page not found</h1>
</div>
<p>The page you requested was not found.</p>
<ul>
<li><a href="/">Return home</a></li>
<li><a onclick="history.back()">Go back to the previous page</a></li>
</ul>
</div>
</div>
<footer class="footer">
<div class="container-footer">
<p class="pull-right"><a href="#">Back to top</a></p>
<p class="pull-right"><a href="/docs/about/#2">License</a></p>
<p>Copyright © 2012 ⋅ <a href="http://www.outercurve.org">The Outercurve Foundation</a>.</p>
</div>
</footer>
</div>
</body>
</html>