From ef017175625c69bebf0b4871b572a13b43f0b588 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Fri, 10 Jan 2014 03:08:41 -0500 Subject: [PATCH] allow themes to set path to a frameworkCSS so you can include a customized BS or another framework altogether --- src/meta.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meta.js b/src/meta.js index d46d0270c1..e755bf940f 100644 --- a/src/meta.js +++ b/src/meta.js @@ -135,6 +135,7 @@ var fs = require('fs'), function(config, next) { themeData['theme:staticDir'] = config.staticDir ? config.staticDir : ''; themeData['theme:templates'] = config.templates ? config.templates : ''; + themeData['theme:src'] = config.frameworkCSS ? config.frameworkCSS : ''; db.setObject('config', themeData, next); }