Last active
August 29, 2015 14:05
-
-
Save wilmoore/dcf2e37803bf14c977ea to your computer and use it in GitHub Desktop.
Bootstrap + Duo Bootstrap (haha)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
node_modules | |
build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Modules | |
*/ | |
@import "necolas/normalize.css"; | |
@import "twbs/[email protected]:dist/css/bootstrap.css"; | |
@import "typefaces/clear-sans-light"; | |
/** | |
* Base | |
*/ | |
html, body { | |
font-family: 'Clear Sans'; | |
margin: 0; | |
margin: 10px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Bootstrap + Duo Bootstrap</title> | |
<link rel="stylesheet" href="build/index.css"> | |
<script src="build/index.js"></script> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
// vendored libs | |
var domready = require('ded/[email protected]'); | |
// internal libs | |
var main = require('./app/main'); | |
// application lifecycle begins here. | |
domready(main); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Development
Pre Deploy
No jQuery by default
Do note that there is no jQuery dependency because we really don't need it unless we are using the bootstrap UI components; however, there are tons of components out there that do not need jQuery -- so include bowerified jQuery if you want it, but it is not the default here.