Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
rbkreisberg committed Sep 12, 2012
1 parent 878c025 commit 22b4636
Show file tree
Hide file tree
Showing 99 changed files with 36,037 additions and 0 deletions.
17 changes: 17 additions & 0 deletions app/application.js
@@ -0,0 +1,17 @@
// Application bootstrapper.
Application = {
initialize: function() {
var HomeView = require('views/home_view');
var GraphView = require('views/graph_view');
var Router = require('lib/router');
// Ideally, initialized classes should be kept in controllers & mediator.
// If you're making big webapp, here's more sophisticated skeleton
// https://github.com/paulmillr/brunch-with-chaplin
this.homeView = new HomeView();
this.graphView = new GraphView();
this.router = new Router();
if (typeof Object.freeze === 'function') Object.freeze(this);
}
}

module.exports = Application;
Binary file added app/assets/font/fontawesome-webfont.eot
Binary file not shown.
255 changes: 255 additions & 0 deletions app/assets/font/fontawesome-webfont.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/font/fontawesome-webfont.ttf
Binary file not shown.
Binary file added app/assets/font/fontawesome-webfont.woff
Binary file not shown.
Empty file added app/assets/images/.gitkeep
Empty file.
Binary file added app/assets/images/glyphicons-halflings-white.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/glyphicons-halflings.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions app/assets/index.html
@@ -0,0 +1,19 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Example brunch application</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/app.css">
<script src="js/vendor.js"></script>
<script src="js/app.js"></script>
<script>require('initialize');</script>
</head>
<body>

</body>
</html>
90 changes: 90 additions & 0 deletions app/css/app.less
@@ -0,0 +1,90 @@
/*!
* vendor/css/bootstrap v2.0.3
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/

// CSS Reset
@import "/vendor/css/bootstrap/_reset.less";

// Theme variables
// Uncomment the theme you would like to use. Themes may include
// override.less files as well, so be sure to add the themes
// override.less file to the bottom of this page.

// Bootstrap default
@import "/vendor/css/themes/default/_variables.less";


// Your custom theme
// @import "themes/custom/_variables.less";

// Mixins
@import "/vendor/css/bootstrap/_mixins.less";

// Grid system and page structure
@import "/vendor/css/bootstrap/_scaffolding.less";
@import "/vendor/css/bootstrap/_grid.less";
@import "/vendor/css/bootstrap/_layouts.less";

// Base CSS
@import "/vendor/css/bootstrap/_type.less";
@import "/vendor/css/bootstrap/_code.less";
@import "/vendor/css/bootstrap/_forms.less";
@import "/vendor/css/bootstrap/_tables.less";

// Components: common
@import "/vendor/css/bootstrap/_sprites.less";
@import "/vendor/css/font-awesome/_font-awesome.less";
@import "/vendor/css/bootstrap/_dropdowns.less";
@import "/vendor/css/bootstrap/_wells.less";
@import "/vendor/css/bootstrap/_component-animations.less";
@import "/vendor/css/bootstrap/_close.less";

// Components: Buttons & Alerts
@import "/vendor/css/bootstrap/_buttons.less";
@import "/vendor/css/bootstrap/_button-groups.less";
@import "/vendor/css/bootstrap/_alerts.less"; // Note: alerts share common CSS with buttons and thus have styles in buttons.less

// Components: Nav
@import "/vendor/css/bootstrap/_navs.less";
@import "/vendor/css/bootstrap/_navbar.less";
@import "/vendor/css/bootstrap/_pagination.less";
@import "/vendor/css/bootstrap/_pager.less";

// Components: Popovers
@import "/vendor/css/bootstrap/_modals.less";
@import "/vendor/css/bootstrap/_tooltip.less";
@import "/vendor/css/bootstrap/_popovers.less";

// Components: Misc
@import "/vendor/css/bootstrap/_thumbnails.less";
@import "/vendor/css/bootstrap/_labels-badges.less";
@import "/vendor/css/bootstrap/_progress-bars.less";
@import "/vendor/css/bootstrap/_accordion.less";
@import "/vendor/css/bootstrap/_carousel.less";
@import "/vendor/css/bootstrap/_hero-unit.less";


// Componets: Responsive
@import "/vendor/css/bootstrap/_responsive-utilities.less";
@import "/vendor/css/bootstrap/_responsive-1200px-min.less";
@import "/vendor/css/bootstrap/_responsive-768px-979px.less";
@import "/vendor/css/bootstrap/_responsive-767px-max.less";
@import "/vendor/css/bootstrap/_responsive-navbar.less";


// Utility classes
@import "/vendor/css/bootstrap/_utilities.less"; // Has to be last to override when necessary

// Theme Overrides

// Bootstrap default
@import "/vendor/css/themes/default/_overrides.less";

// Your custom theme
// @import "themes/custom/_overrides.less";
Empty file.

0 comments on commit 22b4636

Please sign in to comment.