Sha256: 02bd094aeaf62f5e6aad0f63a371fbd16e93279785abc18e17aa1793614beaa2

Contents?: true

Size: 672 Bytes

Versions: 4

Compression:

Stored size: 672 Bytes

Contents

<div class="bordered-orange">
  <h3><%= _("Latest news from the Typo development blog") %></h3>
  <% if @typo_links.nil? %>
    <%= _('You have no internet connection') %>
  <% else %>
    <ul>
      <% if @typo_links.size == 0 %>
        <li><%= _("Oh no, nothing new") %></li>
      <% else %>
        <% @typo_links.each do |link| -%>
          <li <%= alternate_class %>>
            <h4><%= link_to("<strong>#{link.title}</strong><br />", link.link) %></h4>
            <small><%= "#{link.date}<br />" %></small>
            <%= link.description.strip_html.slice(0, 400) %>[...]
          </li>
        <% end %>
      <% end %>
    </ul>
  <% end %>
  <hr />
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
typo-5.4.3 app/views/admin/dashboard/_typo_dev.html.erb
typo-5.4.2 app/views/admin/dashboard/_typo_dev.html.erb
typo-5.4.1 app/views/admin/dashboard/_typo_dev.html.erb
typo-5.4 app/views/admin/dashboard/_typo_dev.html.erb