Skip to content

Instantly share code, notes, and snippets.

@enricodeleo
Created May 9, 2013 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enricodeleo/5548209 to your computer and use it in GitHub Desktop.
Save enricodeleo/5548209 to your computer and use it in GitHub Desktop.
Include csscrush
<?php
require_once(dirname(__FILE__) . '/csscrush/CssCrush.php');
$options = array(
'debug' => true,
'cache' => false,
'versioning' => false
);
$compiled_file = csscrush_file( dirname(__FILE__) .'/css/style.css', $options );
?>
<link rel="stylesheet" type="text/css" href="<?php echo $compiled_file; ?>" media="all" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment