This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/app/views/styles/index.rhtml

11 lines
295 B
Plaintext

<% if @styles.empty? -%>
<ul><li>No styles found.</li></ul>
<% else -%>
<ol><%= @styles.collect { |s| '<li>' + link_to(s.title, style_path(s)) + '</li>' } %></ol>
<% end -%>
<% content_for :sidebar do -%>
<%= new_style_link -%><br />
<%= render :partial => 'shared/tag_cloud' %>
<% end -%>