2013-02-05 14:16:51 -05:00
|
|
|
// Manifest
|
|
|
|
//
|
|
|
|
//= require ./vendor/normalize
|
|
|
|
//= require ./vendor/bootstrap
|
|
|
|
//= require ./foundation/base
|
2013-07-08 20:06:43 -04:00
|
|
|
//= require ./vendor/font_awesome/font-awesome
|
2013-02-05 14:16:51 -05:00
|
|
|
//= require ./vendor/chosen
|
|
|
|
//= require_tree ./components
|
|
|
|
//= require_tree ./application
|
|
|
|
//= require ./foundation/helpers
|
|
|
|
<%
|
2013-08-25 22:52:36 -04:00
|
|
|
# TODO this is very tricky, we want to add a dependency here on files that may not yet exist
|
|
|
|
# otherwise in dev we are often stuck nuking the tmp/cache directory
|
2013-02-05 14:16:51 -05:00
|
|
|
DiscoursePluginRegistry.stylesheets.each do |css|
|
|
|
|
require_asset(css)
|
|
|
|
end
|
|
|
|
%>
|