Aggiunto bootstrap tra le dipendenze

This commit is contained in:
cek 2015-09-12 18:23:06 +02:00
parent 859c2f1c53
commit df6ec1d2ba
2 changed files with 66 additions and 64 deletions

View file

@ -1,63 +1,64 @@
<!doctype html> <!doctype html>
<!--[if lt IE 7]> <!--[if lt IE 7]>
<html class = "no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <html class = "no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <!--[if IE 7]>
<html class = "no-js lt-ie9 lt-ie8"> <![endif]--> <html class = "no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <!--[if IE 8]>
<html class = "no-js lt-ie9"> <![endif]--> <html class = "no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <!--[if gt IE 8]><!-->
<html class="no-js"> <html class="no-js">
<!--<![endif]--> <!--<![endif]-->
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>arkiwiJsBoilerplate</title> <title>arkiwiJsBoilerplate</title>
<meta name="description" content="Arkiwi JS Boilerplate"> <meta name="description" content="Arkiwi JS Boilerplate">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css styles/vendor.css --> <!-- build:css styles/vendor.css -->
<!-- bower:css --> <!-- bower:css -->
<!-- endbower --> <!-- endbower -->
<!-- endbuild --> <!-- endbuild -->
<!-- build:css(.tmp) styles/main.css --> <!-- build:css(.tmp) styles/main.css -->
<link rel="stylesheet" href="styles/main.css"> <link rel="stylesheet" href="styles/main.css">
<!-- endbuild --> <!-- endbuild -->
<!-- Latest compiled and minified CSS --> <!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">-->
<!-- Optional theme --> <!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css"> <!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">-->
<!-- Latest compiled and minified JavaScript --> <!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> <!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>-->
</head> </head>
<body> <body>
<!--[if lt IE 10]> <!--[if lt IE 10]>
<p class = "browsehappy">You are using an <strong>outdated</strong> browser. Please <p class = "browsehappy">You are using an <strong>outdated</strong> browser. Please
<a href = "http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <a href = "http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]--> <![endif]-->
<div class="container"> <div class="container">
<header> <header>
<h1>App Generated <small>with the html5 app generator</small></h1> <h1>App Generated <small>with the html5 app generator</small></h1>
<p>Now go develop</p> <p>Now go develop</p>
</header> </header>
</div> </div>
<!-- build:js scripts/vendor.js --> <!-- build:js scripts/vendor.js -->
<!-- bower:js --> <!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script> <script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/mustache/mustache.js"></script> <script src="bower_components/mustache/mustache.js"></script>
<script src="bower_components/bower-parseuri/parseuri.js"></script> <script src="bower_components/bower-parseuri/parseuri.js"></script>
<!-- endbower --> <script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<!-- endbuild --> <!-- endbower -->
<!-- endbuild -->
<script src="scripts/arkiwi.js"></script>
<script src="scripts/main.js"></script> <script src="scripts/arkiwi.js"></script>
</body> <script src="scripts/main.js"></script>
<div class="container-fluid" id="list" ><div class="row"></div></div> </body>
</html> <div class="container-fluid" id="list" ><div class="row"></div></div>
</html>

View file

@ -22,6 +22,7 @@
"dependencies": { "dependencies": {
"jquery": "*", "jquery": "*",
"mustache": "~2.1.2", "mustache": "~2.1.2",
"bower-parseuri": "~1.2.2" "bower-parseuri": "~1.2.2",
"bootstrap": "~3.3.5"
} }
} }