mirror of
https://github.com/ExactTarget/fuelux.git
synced 2026-04-26 03:00:10 -04:00
55 lines
1.5 KiB
HTML
55 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="fuelux">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>dev.html</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" type="text/css">
|
|
<!--<link href="dist/css/fuelux.css" rel="stylesheet" type="text/css">-->
|
|
<link href="less/fuelux.less" rel="stylesheet/less" type="text/css" />
|
|
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/1.7.0/less.min.js"></script>
|
|
|
|
<script src="bower_components/requirejs/require.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
if(window.console && window.console.clear){
|
|
window.console.clear();
|
|
}
|
|
|
|
// Feature detect for jQuery version
|
|
var pathToJQuery;
|
|
if('querySelector' in document
|
|
&& 'localStorage' in window
|
|
&& 'addEventListener' in window ) {
|
|
pathToJQuery = 'bower_components/jquery/dist/jquery';
|
|
} else {
|
|
pathToJQuery = 'bower_components/jquery-1.9.1/jquery';
|
|
}
|
|
|
|
requirejs.config({
|
|
paths: {
|
|
jquery: pathToJQuery,
|
|
underscore: 'bower_components/underscore/underscore',
|
|
bootstrap: 'bower_components/bootstrap/dist/js/bootstrap',
|
|
moment: 'bower_components/moment-with-langs/index', // comment out if you dont want momentjs to be default
|
|
fuelux: 'js',
|
|
sample: 'sample'
|
|
}
|
|
});
|
|
|
|
require(['jquery', 'index', 'data', 'fuelux/all'], function ($, data){
|
|
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container" style="padding: 20px; margin-top:20px;">
|
|
|
|
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|