-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (58 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox Framework Prototype</title>
<meta name="description" content="Flexbox based UI Framework built with HTML/CSS3" />
<meta name="keywords" content="user interface, framework, flexbox, LESS, html5, mobile" />
<meta name="author" content="GiggleboxStudios" />
<!-- <link rel="shortcut " href="../fav.ico"> -->
<!-- <link rel="stylesheet" type="text/css" href="css/main.css" /> -->
<link rel="stylesheet/less" type="text/css" href="less/main.less" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="container">
<div class="flex-wrapper">
<header class="flex-header">
<h1 class="flex-cell">App Title Here</h1>
</header>
<div class="flex-main" role="main">
some content here
</div>
<div class="flex-sidebar">
<nav role="navigation">
<ul>
<li><button>Button Text</button></li>
<li><button>Button Text</button></li>
<li><button>Button Text</button></li>
<li><button>Button Text</button></li>
<li><button>Button Text</button></li>
<li><button>Button Text</button></li>
</ul>
</nav>
</div>
<footer class="flex-footer">
© 2014 Copyright Info here.
</footer>
</div>
</div>
<script>
less = {
env: "development"
, async: false
, fileAsync: false
, poll: 1000
, functions: {}
, dumpLineNumbers: "comments"
, relativeUrls: false
// , rootpath: ":/a.com/"
};
</script>
<script type="text/javascript" src="js/vendor/less-1.7.0.min.js"></script>
<script type="text/javascript" src="js/vendor/jquery.min.js"></script>
<script type="text/javascript" src="js/offcanvas-nav.js"></script>
</body>
</html>