Body class for controller in Rails app.
- by Vincent
Currently I have this in my layout:
<body class="<%= controller.controller_name %>">
I want to add an additional class that will be the same for all actions in any controller where it's set, something like:
class SomeController < ApplicationController
body_class 'page'
...
end
class AnotherController < ApplicationController
body_class 'page'
...
end
Which will result in:
<body class="some page">
<body class="another page">
What would be the easiest way to achieve this? Can I use controller class variables for this?