Sha256: 070ae469b6403e93b137b301b9c142dae90660c892c16ab5752b492ddecc23de

Contents?: true

Size: 881 Bytes

Versions: 6

Compression:

Stored size: 881 Bytes

Contents

<% title_tag t('plugin.site') %>

<div id="site_nodes">
  <% if can? :create, ::Site %>
  <div class="card">
    <div class="card-body">
      <%= raw Setting.site_index_html %>
      <%= link_to('提交酷站', new_site_path, class: "btn btn-primary")%>
    </div>
  </div>
  <% end %>

  <% cache(["plugin/sites", t: CacheVersion.sites_updated_at, d: Date.today]) do %>
    <% @site_nodes.each do |node| %>
    <div class="card">
      <div class="card-header"><%= node.name %></div>
      <div class="card-body row">
        <% node.sites.each do |item| %>
        <div class="col-md-3 site">
          <%= image_tag(item.favicon_url, class: "favicon", style: "width: 16px; height: 16px;")%>
          <%= link_to item.name, item.url, target: "_blank", rel: "twipsy", title: item.desc %>
        </div>
        <% end %>
      </div>
    </div>
    <% end %>
  <% end %>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
homeland-site-0.3.3 app/views/homeland/site/sites/index.html.erb
homeland-site-0.3.2 app/views/homeland/site/sites/index.html.erb
homeland-site-0.3.1 app/views/homeland/site/sites/index.html.erb
homeland-site-0.3.0 app/views/homeland/site/sites/index.html.erb
homeland-site-0.2.1 app/views/homeland/site/sites/index.html.erb
homeland-site-0.2.0 app/views/homeland/site/sites/index.html.erb