aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/index.php b/index.php
index 21e7328..61b250a 100644
--- a/index.php
+++ b/index.php
@@ -8,6 +8,7 @@ require_once('config.php');
require_once('lib/PhpTemplate.php');
require_once('lib/Exceptions.php');
+require_once('lib/less.php/Less.php');
require_once('model/ModelBase.php');
require_once('model/Conference.php');
@@ -65,6 +66,20 @@ try {
require('view/streams-json-v1.php');
}
+ else if($route == 'assets/css/main.css')
+ {
+ $parser = new Less_Parser([
+ 'sourceMap' => true,
+ 'compress' => true,
+ 'relativeUrls' => true,
+ ]);
+ $parser->parseFile('assets/css/main.less', forceslash(baseurl()).'assets/css/');
+ $css = $parser->getCss();
+ header('Content-Type: text/css');
+ header('Content-Length: '.strlen($css));
+ print($css);
+ }
+
else if(!$conference->hasBegun())
{
require('view/not-started.php');