_typo_dev.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
- <div class='dashboard ui-accordion ui-widget ui-helper-reset ui-accordion-icons'>
- <h3 class='ui-accordion-header ui-helper-reset ui-state-active ui-corner-top'>
- <span class='ui-icon ui-icon-signal-diag'> </span>
- <%= _("Latest news from the Typo development blog") %>
- </h3>
- <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
- <% 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 %>
- </div>
- </div>