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

Ajax

开发平台:

Others

  1. <% @page_heading = _('Choose a theme') %>
  2. <% subtabs_for(:themes) %>
  3. <% i = 0 %>
  4. <% for theme in @themes %>
  5.   <div class='dashboard-left ui-accordion ui-widget ui-helper-reset ui-accordion-icons theme settings'>
  6.     <h3 class='ui-accordion-header ui-helper-reset <%= theme.path == @active.path ? 'ui-state-active' : 'ui-state-default' %> ui-corner-top'>
  7.       <span class='ui-icon <%= theme.path == @active.path ? 'ui-icon-star' : 'ui-icon-image'  %>'> </span>
  8.       <%= theme.name %>
  9.     </h3>
  10.     <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  11.       <% if theme.path == @active.path -%>
  12.         <%= image_tag(url_for(:action => 'preview', :theme => theme.name, :skip_relative_url_root => true)) %>
  13.       <% else %>
  14.         <%= link_to(image_tag(url_for(:action => 'preview', :theme => theme.name, :skip_relative_url_root => true)), :action => 'switchto', :theme => theme.name) %>
  15.       <% end %>
  16.       <%= theme.description_html %>
  17.       <% if theme.path == @active.path -%>
  18.         <em>(<%= _("Active theme")%>)</em>
  19.       <% end -%>
  20.     </div>
  21.   </div>
  22. <% if i == 2 %>
  23.   <% i = 0 %>
  24.   <br class='clear' />
  25. <% else %>
  26.   <% i+=1 %>
  27. <% end %>
  28. <% end %>
  29. <hr class="clear" />
  30. <h2><%= _("Get more themes")%> </h2>
  31. <p>
  32.     <%= _("You can download third party themes from officially supported %s ", link_to(_("Typogarden"), 'http://typogarden.org'))%> <%= _("To install a theme you  just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.") %>
  33. </p>