diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-02-25 17:27:14 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-03-10 10:56:15 +0000 |
commit | bad54dec3d0f153e22bf94bded4be6cf98be3a9c (patch) | |
tree | 61ea3280f278cff65d0f39afa3ccca04a7f7d163 /config | |
parent | 75c6cde4d869c190fc10ce36ec96f818efb1970f (diff) |
add a "custom_css" template, so we can easily overlay it from plugins
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index d0e102070..7af41ac92 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,7 +17,7 @@ ActionController::Routing::Routes.draw do |map| map.with_options :controller => 'general' do |general| general.frontpage '/', :action => 'frontpage' general.blog '/blog', :action => 'blog' - + general.custom_css '/custom.css', :action => 'custom_css' general.search_redirect '/search', :action => 'search_redirect' # XXX combined is the search query, and then if sorted a "/newest" at the end. # Couldn't find a way to do this in routes which also picked up multiple other slashes |