catalogue.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <% @page_heading = _('Theme catalogue') %>
  2. <% subtabs_for(:themes) %>
  3. <% if @error %>
  4.   <p><%= _("Sorry the theme catalogue is not available") %></p>
  5. <% end %>
  6. <% i = 0 %>
  7. <% for theme in @themes %>
  8. <div class='dashboard-left ui-accordion ui-widget ui-helper-reset ui-accordion-icons theme settings'>
  9.   <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'>
  10.     <span class='ui-icon ui-icon-image'> </span>
  11.     <%= theme.name %>
  12.   </h3>
  13.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  14.       <%= link_to(image_tag(theme.image), theme.url) %>
  15.       <p>Created by <%= theme.author %></p>
  16.       <p><%= theme.description %></p>
  17.     </div>
  18.   </div>
  19.   <% if i == 2 %>
  20.     <% i = 0 %>
  21.     <br class='clear' />
  22.   <% else %>
  23.     <% i+=1 %>
  24.   <% end %>
  25.   
  26. <% end %>
  27. <hr class="clear" />