I load my stylesheets and js files in <head>
for performance reasons.
My site has multiple components and each template wants to its own extra header files in inside <% yield(:head)
.
I tested <% content_for :head do %>
.. but then I realize it actually overwrites rather than append to a particular section.
What do you guys use?