This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= list_table_for @team_members do |list| %> | |
<% list.empty 'There are no people to show at this time' %> | |
<% list.row do |team_member| %> | |
<td class="list-item"> | |
<%= profile_picture(team_member) %> | |
<div class="list-item-title with-pic"> | |
<h5><%= team_member.display_name %></h5> | |
<div class="details"><%= (team_member.city + ', ' if team_member.city) + team_member.state %></div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Split Layout --> | |
<div class="layout split"> | |
<div class="main"> | |
Main | |
</div> | |
<div class="sidebar"> | |
Sidebar | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- "Full" Layout. The Default --> | |
<div class="layout"> | |
<div class="main"> | |
Main | |
</div> | |
</div> |