2013-02-06 03:16:51 +08:00
|
|
|
// Manifest
|
|
|
|
//
|
|
|
|
//= require ./vendor/normalize
|
|
|
|
//= require ./vendor/bootstrap
|
|
|
|
//= require ./foundation/base
|
2013-07-09 08:06:43 +08:00
|
|
|
//= require ./vendor/font_awesome/font-awesome
|
2013-02-06 03:16:51 +08:00
|
|
|
//= require ./vendor/chosen
|
|
|
|
//= require_tree ./components
|
|
|
|
//= require_tree ./application
|
|
|
|
//= require ./foundation/helpers
|
|
|
|
<%
|
2013-08-26 10:52:36 +08: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-06 03:16:51 +08:00
|
|
|
DiscoursePluginRegistry.stylesheets.each do |css|
|
|
|
|
require_asset(css)
|
|
|
|
end
|
|
|
|
%>
|