<%= show_date(@page.published_at) %> <%= _(", by %s") % (@page.author ? link_to(@page.author_name, @page.author_url) : @page.author_name) %> <% unless @no_comments %> <%= (" - %s") % link_to_comments(@page)%> <% end %> <% if @page.display_hits? || @page.license.present? %>
<% if @page.display_hits? %>
<%= n_('Viewed one time', 'Viewed %{num} times', @page.hits) % { :num => @page.hits } %>
<% end %> <% if @page.license.present? %>
<%= _('Licensed under %s') % (@page.license.url.present? ? link_to(@page.license.name, @page.license.url, :target => '_blank') : @page.license.name) %>
<% end %>
<% end %>