]> iEval git - gruntmaster-page.git/blobdiff - lib/Gruntmaster/Page/CSS.pm
Make Gruntmaster::Page::Base::variants not need overriding
[gruntmaster-page.git] / lib / Gruntmaster / Page / CSS.pm
index 25b613777acc737b295d544bdbe7b0452ef2cec3..7165c3adefc8d4bef306b60fd4ba4615c55ca063 100644 (file)
@@ -16,9 +16,7 @@ sub generate{
        return [404, ['Content-Type' => 'text/plain'], [ 'Not found' ]] unless -e "css/themes/$theme.css";
        my $css = read_file "css/themes/$theme.css";
        $css .= read_file $_ for <css/*.css>;
-       [200, ['Content-Type' => 'text/css', 'Cache-Control' => 'public, max-age=604800'], [minify $css] ]
+       [200, ['Content-Type' => 'text/css', 'Cache-Control' => 'public, max-age=604800', 'X-Forever' => 1], [minify $css] ]
 }
 
-sub variants{ [[css => 1, 'text/css', undef, undef, undef, undef]] }
-
 1
This page took 0.02128 seconds and 4 git commands to generate.