You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

entry.rhtml 528B

1234567891011121314151617
  1. <h2><%= render :partial => 'navigation', :locals => { :path => @path, :kind => 'file', :revision => @rev } %></h2>
  2. <div class="autoscroll">
  3. <table class="filecontent CodeRay">
  4. <tbody>
  5. <% line_num = 1 %>
  6. <% syntax_highlight(@path, to_utf8(@content)).each_line do |line| %>
  7. <tr><th class="line-num" id="L<%= line_num %>"><%= line_num %></th><td class="line-code"><pre><%= line %></pre></td></tr>
  8. <% line_num += 1 %>
  9. <% end %>
  10. </tbody>
  11. </table>
  12. </div>
  13. <% content_for :header_tags do %>
  14. <%= stylesheet_link_tag "scm" %>
  15. <% end %>