-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (85 loc) · 4.59 KB
/
index.html
File metadata and controls
111 lines (85 loc) · 4.59 KB
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
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- encoding must be specified within the first 512 bytes www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#charset -->
<!-- meta element for compatibility mode needs to be before all elements except title & meta msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx -->
<!-- Chrome Frame is only invoked if meta element for compatibility mode is within the first 1K bytes code.google.com/p/chromium/issues/detail?id=23003 -->
<title>cbh_shell</title>
<meta name="description" content="" />
<meta name="author" content="" />
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Place favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<!-- CSS : implied media="all" -->
<link rel="stylesheet" href="css/style.css?v=2" />
<link rel="stylesheet" href="css/console.css" />
<link rel="stylesheet" href="css/cbh.css" />
<!-- Uncomment if you are specifically targeting less enabled mobile browsers
<link rel="stylesheet" media="handheld" href="css/handheld.css?v=2"> -->
<!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
<script src="js/libs/modernizr-1.6.min.js"></script>
</head>
<body>
<section class="instruction">
<h1>Show Console</h1>
<p class="key_cmd"><span class="key">control</span>+<span class="key">t</span></p>
<aside>
<p>you <strong>may</strong> need to give the window focus</p>
</aside>
</section>
<footer id="main_footer">
<h1>cbh_shell</h1>
<aside>
<a rel="license" href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons License: ( coded by hand )">
<img alt="Creative Commons License: ( coded by hand )" style="border-width:0" src="http://i.creativecommons.org/l/by/3.0/80x15.png" />
</a>
<p class="branding"><a href="http://codedbyhand.com">( coded by hand )</a></p>
</aside>
</footer>
<div class="git_ribbon">
<a href="http://github.com/coded-by-hand/cbh_shell" title="Fork me on GitHub">Fork me on GitHub</a>
</div>
<!-- Javascript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.4.js"%3E%3C/script%3E'))</script>
<!-- scripts concatenated and minified via ant build script-->
<script src="js/plugins.js"></script>
<script src="js/script.js"></script>
<script src="js/libs/json2.js"></script>
<script src="js/mylibs/cbh_shell.js"></script>
<script src="js/libs/jquery.console.js"></script>
<script src="js/libs/jquery.hotkeys.js"></script>
<!-- end concatenated and minified scripts-->
<!--[if lt IE 7 ]>
<script src="js/libs/dd_belatedpng.js"></script>
<script>DD_belatedPNG.fix('img, .png_bg'); // Fix any <img> or .png_bg bg-images. Also, please read goo.gl/mZiyb </script>
<![endif]-->
<!-- yui profiler and profileviewer - remove for production -->
<!-- <script src="js/profiling/yahoo-profiling.min.js"></script>
<script src="js/profiling/config.js"></script> -->
<!-- end profiling code -->
<!-- asynchronous google analytics: mathiasbynens.be/notes/async-analytics-snippet
change the UA-XXXXX-X to be your site's ID -->
<script>
// var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
// (function(d, t) {
// var g = d.createElement(t),
// s = d.getElementsByTagName(t)[0];
// g.async = true;
// g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
// s.parentNode.insertBefore(g, s);
// })(document, 'script');
</script>
</body>
</html>