I have one HTML file located in app/views/layouts/application.html.erb
I use <%=yield=> to render the HTML code from other models.
The problem is that I don't know how to distinguish the CSS code. I have a universal CSS code, but each html file needs a different one.
here is my CSS line in app/views/layouts/application.html.erb
<%= stylesheet_link_tag "scaffold" %>
<%= stylesheet_link_tag "welcome_screen/my_CSS.css", :media => "all" %>