<%= link_to t("txt.home.latest_from_blog"), blog_url %>

<% for post in blog_posts %>

<%= link_to(truncate(post.title, 83), post.url) %>

<%= t('txt.home.blog_post_info', :on => l(post.date, :format => :cute_long), :in => wp_categories_links(post.categories)) %>
<% end %>
<%= link_to(t('txt.home.see_other_posts'), blog_url) %>
  • <%= link_to t('txt.home.subscribe_to_rss'), feeds_url(:format => :rss), :class => "rss" %>
  • <%= link_to t('txt.home.follow_on_twitter'), twitter_url, :class => "twitter" %>
<% for latest in latest_news %>
">
<%= l(latest.date, :format => :news) %>
<% if latest.is_release? %>

<%= t('txt.home.new_release', :product => strip_version(latest.product.name), :version => latest.version) %>

<% if latest.has_changelog? %> <%= link_to t('txt.common.see_whats_new'), releases_page_path(latest.product, latest.version) %> <%= t('txt.common.or') %> <% end %> <%= download_link_to t('txt.home.download_latest_release'), latest.product %>

<% else %>

<% if latest.with_link? %><%= link_to latest.title, latest.link %><% else %><%= latest.title %><% end %>

<%= latest.body %>

<% end %>
<% end %>

<%= render :partial => "shared/footer_copy" %>