I was wondering how I might echo out the current high_voltage page name as class for my <body>?
My current solution is a bit cumbersome:
# app/views/layouts/application.html.erb
<body class="<%= yield :body_class %>">
# app/views/pages/principles.html.erb
<% content_for :body_class do %>home<% end %>
Any help would be greatly appreciated.