v5
Version:
V5 Mobile Web Framework
33 lines • 1.46 kB
HTML
<html>
<head>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>V5 Framework</title>
<link rel="apple-touch-icon" href="images/icon.png" />
<link rel="stylesheet" href="https://raw.github.com/V5Framework/V5/master/css/base.css" />
<link rel="stylesheet" href="css/index.css" />
<script src="https://raw.github.com/V5Framework/V5/master/lib/LAB.src.js"></script>
<script>
$LAB.script("https://raw.github.com/V5Framework/V5/master/lib/storage.js")
.script("https://raw.github.com/V5Framework/V5/master/lib/zepto.js")
.script("https://raw.github.com/V5Framework/V5/master/lib/eventproxy.js")
.script("https://raw.github.com/V5Framework/V5/master/lib/underscore.js").wait()
.script("https://raw.github.com/V5Framework/V5/master/lib/backbone-0.5.3.js").wait()
.script("https://raw.github.com/V5Framework/V5/master/V5.js").wait()
.script("scripts/index.js").wait(function () {
V5.init();
});
</script>
</head>
<body>
<div id="container">
<div class="alpha"></div>
<div class="beta"></div>
<div class="gamma"></div>
</div>
</body>
</html>