I'm having a small problem with Less . I can't seem to get it working. I'm running it client side. It just doesn't create the CSS, the page stays unstyled.
Header
   <!-- Include LESS Stylesheets -->
    <link rel="stylesheet/less" type="text/css" href="/includes/style/general.less" />
    <!-- Include Scripts and Co -->
    <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/2.6.1/less.min.js"></script>
Index
    <body>
    </body>
general.less
@rcmsblue: #8AE9FD;
body{
  background-color: @rcmsblue;
}
Am I doing something wrong?
 
     
    