<% cache "user-profile-sidebar-profile-details-#{@user.id}-#{@user.profile_updated_at}", expires_in: 10.days do %> <% if @user.mostly_work_with.present? %>

skills/languages

<%= sanitized_sidebar @user.mostly_work_with %>
<% end %> <% if @user.currently_learning.present? %>

learning/trying

<%= sanitized_sidebar @user.currently_learning %>
<% end %> <% if @user.currently_hacking_on.present? %>

projects and hacks

<%= sanitized_sidebar @user.currently_hacking_on %>
<% end %> <% if @user.available_for.present? %>

available for

<%= sanitized_sidebar @user.available_for %>
<% end %> <% end %> <% cache "user-profile-sidebar-stats-#{@user.id}-#{@user.last_article_at}-#{@user.last_comment_at}-#{@user.last_followed_at}", expires_in: 10.days do %>
<%= pluralize @user.articles.published.size, "Post" %> Published
<%= pluralize @user.comments.where(deleted: false).size, "Comment" %> Written
<%= pluralize @user.decorate.cached_followed_tags.size, "Tag" %> Followed
<% end %>