Sha256: 78bc848cffd63b26980c56b041ac50ec5991bae9f1568ad74b60da4eed9ec379
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
<div class="post"> <h2><%= @author.nickname %></h2> <%= display_user_avatar(@author, 'thumb', 'alignright') %> <%= author_description @author %> <h2><%= t(".contact_information") %></h2> <ul> <%= display_profile_item @author.url, t(".web_site") %> <%= display_profile_item @author.msn, t(".msn") %> <%= display_profile_item @author.yahoo, t(".yahoo") %> <%= display_profile_item @author.jabber, t(".jabber") %> <%= display_profile_item @author.aim, t(".aim") %> <%= display_profile_item @author.twitter, t(".twitter") %> </ul> </div> <% if @articles.empty? %> <div class="post"> <p><%= t(".this_author_has_not_published_any_article_yet")%></p> </div> <% else %> <%= cache [@articles, params[:page]] do %> <% @articles.group_by(&:publication_month).each do |_month, articles| %> <h3 class="archivemonth"> <%= l(articles.first.published_at, format: :letters_month_with_year) %> </h3> <%= render partial: 'articles/archives_article', collection: articles, as: :article %> <% end %> <% end %> <%= paginate @articles %> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
publify_core-9.1.0 | app/views/authors/show.html.erb |
publify_core-9.0.1 | app/views/authors/show.html.erb |
publify_core-9.0.0 | app/views/authors/show.html.erb |