catalogue.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
- <% @page_heading = _('Theme catalogue') %>
- <% subtabs_for(:themes) %>
- <% if @error %>
- <p><%= _("Sorry the theme catalogue is not available") %></p>
- <% end %>
- <% i = 0 %>
- <% for theme in @themes %>
- <div class='dashboard-left ui-accordion ui-widget ui-helper-reset ui-accordion-icons theme settings'>
- <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'>
- <span class='ui-icon ui-icon-image'> </span>
- <%= theme.name %>
- </h3>
- <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
- <%= link_to(image_tag(theme.image), theme.url) %>
- <p>Created by <%= theme.author %></p>
- <p><%= theme.description %></p>
- </div>
- </div>
- <% if i == 2 %>
- <% i = 0 %>
- <br class='clear' />
- <% else %>
- <% i+=1 %>
- <% end %>
-
- <% end %>
- <hr class="clear" />