update landing page

- restyle
- add sponsors
This commit is contained in:
Roman Shtylman
2013-11-22 17:57:26 -05:00
parent 9ce57979cf
commit b6abd16383
13 changed files with 2342 additions and 506 deletions

View File

@@ -3,6 +3,8 @@ var express = require('express');
var bouncy = require('bouncy');
var taters = require('taters');
var enchilada = require('enchilada');
var stylish = require('stylish');
var makeover = require('makeover');
var makeup = require('makeup');
var engine = require('engine.io');
var browserkthx = require('browserkthx');
@@ -132,6 +134,15 @@ module.exports = function(opt) {
app.use(browserkthx({ ie: '< 9' }));
app.use(taters({ cache: kProduction }));
app.use(stylish({
src: __dirname + '/static/',
compress: kProduction,
cache: kProduction,
setup: function(stylus) {
return stylus.use(makeover());
}
}));
app.use(enchilada({
src: __dirname + '/static/',
compress: kProduction,