-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·99 lines (81 loc) · 4.02 KB
/
index.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Phi Framework</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- This is for all the wonderful favicons and touch icons,
pattern found here: http://mathiasbynens.be/notes/touch-icons#sizes -->
<link rel="shortcut icon" href="/favicons/favicon.ico">
<!-- For third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="/favicons/apple-touch-icon-144x144-precomposed.png">
<!-- For iPhone with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="/favicons/apple-touch-icon-114x114-precomposed.png">
<!-- For first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="/favicons/apple-touch-icon-72x72-precomposed.png">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed"
href="/favicons/apple-touch-icon-precomposed.png">
<!-- This is generated from the development CSS, any changes here will be overwritten -->
<link rel="stylesheet" href="dev/css/main.css">
<!-- This is generated from the distributed CSS, any changes here will be overwritten
<link rel="stylesheet" href="dist/main.css"> -->
<!-- Load Requirejs and the main file. -->
<script type="text/javascript" data-main="/dev/js/main"
src="/vendor-bower/requirejs/require.js"></script>
<!-- Load Modernizr for feature detection and HTML5 shim -->
<script type="text/javascript"
src="/vendor-manual/modernizr/touch-shiv-hashchange/modernizr-2.6.2.min.js"></script>
<script>
/************************************************************
* Ensures console object is usable on non-console browsers *
************************************************************/
var method,
noop = function noop() {},
methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
],
length = methods.length,
console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
</script>
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<div class="rowMain">
<div class="twelve columns">
<h1>Welcome to <strong>phi</strong></h1>
<h2>Your Web-App Toolkit and Framework</h2>
<p>I hope this makes web application development more enjoyable.</p>
<h3>Looking for a demo?</h3>
<p><a href="phi/index.html">Click here to play with the UI & Ix demo!</a></p>
</div>
</div>
<!-- Google Analytics: change 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.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>