Sha256: 85df477b5f02ba45488994d6fae997e5510952368dcb246ebf38064702cc2543

Contents?: true

Size: 544 Bytes

Versions: 3

Compression:

Stored size: 544 Bytes

Contents

<% @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 %>
  <% i = i+1 %>

    <div class="theme">
      <div>
        <%= link_to(image_tag(theme.image), theme.url) %>
        <h3><%= theme.name %> created by <%= theme.author %></h3>
        <p><%= theme.description %></p>
      </div>
    </div>
  <% if i == 3 %>
    <% i = 0%>
    <hr class="clear" />
  <% end %>

<% end %>
<hr class="clear" />

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
typo-5.2 app/views/admin/themes/catalogue.html.erb
typo-5.2.98 app/views/admin/themes/catalogue.html.erb
typo-5.3 app/views/admin/themes/catalogue.html.erb