-
Notifications
You must be signed in to change notification settings - Fork 4
/
sorry.cfm
134 lines (114 loc) · 4.51 KB
/
sorry.cfm
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
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<title>OOPS | Learn CF in a Week</title>
<!-- Mobile Specific Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="/assets/img/favicon.ico">
<link rel="apple-touch-icon" href="/assets/img/favicon.ico">
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' rel='stylesheet' type='text/css'>
<!-- CSS -->
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="stylesheet" href="/assets/css/skeleton.css">
<link rel="stylesheet" href="/assets/css/layout.css">
<link rel="stylesheet" href="/assets/css/bootstrap.css">
<link rel="stylesheet" href="/assets/css/bootstrap-responsive.css">
<link rel="stylesheet" href="/assets/css/docs.css">
<link rel="stylesheet" href="/assets/css/overwrite.css">
<link href="/assets/css/print.css" rel="stylesheet" media="print">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a href="/"><img src="/assets/img/logo.png" border="0" id="logo"/></a>
<ul class="nav">
<li class="selected"><a href="/">Home</a></li>
<li ><a href="/week1/">Course</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Download<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/download/pdf/">Course PDF</a></li>
<li><a href="/download/sample_files/">Sample File</a></li>
</ul>
</li>
<li ><a href="/contributors/">Contributors</a></li>
<li ><a href="/resources/">Resources</a></li>
</ul>
<form class="navbar-search pull-right" action="/search/" method="post">
<input type="text" class="search-query span2" placeholder="Search" id="head-search" name="keyword">
</form>
</div>
</div>
</div>
<!-- /header -->
<div class="container">
<section id="main-conteiner" class="sixteen margin-section columns">
<div class="container">
<div class="eight offset-by-five columns ">
<h1>
OOOPS!!!
</h1>
<p>
It looks like something went wrong. Our developers have been notified and will get this resolved right away. While you are waiting for the problem to be fixed, why not read some ColdFusion related blogs at <a href="http://www.cfbloggers.org" target="_new">cfbloggers.org</a>!
</p>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</div>
</section>
</div><!-- container -->
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>Code licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache License v2.0</a>. Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
</div>
</footer>
<!-- /Footer -->
<!-- End Document -->
<!-- JS -->
<script src="/assets/js/jquery.js"></script>
<script src="/assets/js/jquery.js"></script>
<script src="/assets/js/tabs.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/assets/js/jquery.zclip.min.js"></script>
<script src="/assets/js/global.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-35484284-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>
</body>
</html>