5 Produces a list of <link rel="stylesheet" type="text/css" href=""/> lines for a set of
6 CSS paths (relative to /static/css).
10 =head2 C<paths> - an arrayref of paths to a css file relative to /static/css/, absolute paths, or urls.
14 <& /util/import_css.mas, paths => ['bootstrap/v1.css','/css/jquery.css','http://foo.bar/buzz.css'] &>
23 $paths = [ $paths ] unless ref $paths; #< coerce to arrayref
24 push @{ $c->stash->{css_paths} }, @$paths;