Created
May 31, 2010 20:20
-
-
Save mustardamus/420236 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% unless @stylesheets.nil? %> | |
<% @stylesheets.each do |stylesheet| %> | |
<link rel="stylesheet" type="text/css" media="screen" href="/articles/<%= params[:article] %>/<%= stylesheet %>.css" /> | |
<% end %> | |
<% end %> | |
<% unless @javascripts.nil? %> | |
<% @javascripts.each do |javascript| %> | |
<script type="text/javascript" src="/articles/<%= params[:article] %>/<%= javascript %>.js"></script> | |
<% end %> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment