* Added stories feature specs * Structure feature specs * Spec for the articles by tag page * Spec for clicking "week" button on the tag page * Reorganize stories views * Feature spec for displaying sponsors on tag page * Increase allowed rspec example length * Spec for the users comments view * Articles by tag: reeplace view code with rendering partials
21 lines
774 B
Text
21 lines
774 B
Text
<div id="sidebar-wrapper-right" class="sidebar-wrapper sidebar-wrapper-right">
|
|
<div class="sidebar-bg" id="sidebar-bg-right"></div>
|
|
<div class="side-bar sidebar-additional showing" id="sidebar-additional">
|
|
<% if @organization.users.any? %>
|
|
<div class="widget">
|
|
<div class="widget-suggested-follows-container">
|
|
<header>meet the team</header>
|
|
<div class="widget-body">
|
|
<% @organization.users.each do |user| %>
|
|
<div class="widget-user-pic">
|
|
<a href="/<%= user.username %>">
|
|
<img src="<%= ProfileImage.new(user).get(90) %>" />
|
|
</a>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|