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

Ajax

开发平台:

Others

  1. <div class='dashboard ui-accordion ui-widget ui-helper-reset ui-accordion-icons'>
  2.   <h3 class='ui-accordion-header ui-helper-reset ui-state-active ui-corner-top'>
  3.     <span class='ui-icon ui-icon-signal-diag'> </span>
  4.     <%= _("Latest news from the Typo development blog") %>
  5.   </h3>
  6.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  7.     <% if @typo_links.nil? %>
  8.       <%= _('You have no internet connection') %>
  9.     <% else %>
  10.     <ul>
  11.       <% if @typo_links.size == 0 %>
  12.         <li><%= _("Oh no, nothing new") %></li>
  13.       <% else %>
  14.         <% @typo_links.each do |link| -%>
  15.           <li <%= alternate_class %>>
  16.             <h4><%= link_to("<strong>#{link.title}</strong><br />", link.link) %></h4>
  17.             <small><%= "#{link.date}<br />" %></small>
  18.             <%= link.description.strip_html.slice(0, 400) %>[...]
  19.           </li>
  20.         <% end %>
  21.       <% end %>
  22.     </ul>
  23.   <% end %>
  24.   </div>
  25. </div>