%h1= link_to @feed.title, @feed.url %p= @feed.description %p = link_to "Fetch", fetch_feed_url(@feed), :class => "button"   %a.button{ :href => "https://validator.w3.org/feed/check.cgi?url=#{@feed.feed_url}"}< Validate   = link_to 'Edit', edit_feed_path(@feed), :class => "button" %p = pluralize(@feed.posts.count, "post") %p = link_to @feed.feed_url, @feed.feed_url %p - if @feed.last_fetched.nil? This feed has never been fetched - else Last fetched = time_ago_in_words @feed.last_fetched ago %table#feed - @posts.each do |p| %tr %td= link_to p.title, p.url %td= link_to "Map", "https://maps.google.co.uk/maps?q=%s,%s&hl=en&z=18" % [ p.lat, p.lon ], :target => "_blank" %td - unless p.published.nil? = p.published.strftime("%d %b %Y %H:%M") = will_paginate @posts