Skip to content

Instantly share code, notes, and snippets.

@v-fedorov
Created June 3, 2013 18:11
Show Gist options
  • Save v-fedorov/5700095 to your computer and use it in GitHub Desktop.
Save v-fedorov/5700095 to your computer and use it in GitHub Desktop.
<div class="content">
<div class="opening">
<p>
Here at Rails Dog we believe that the success of any organization is largely determined by the quality of the people you have running it. That's why we have taken great care in building our team. In addition to having a strong technical background, we believe our programmers should also know a little something about business. Each member of our "pack" knows how to deliver outstanding customer service. We understand that you are putting your business on the line when making a major technology investment and we take the responsibility seriously.
</div>
<% Team.all.in_groups_of(2, false) do |teams| %>
<div id="team_row">
<% teams.each do |member| %>
<div class="<%= cycle('teamodd', 'teameven') %>">
<div class="piclink">
<%= image_tag 'team/sean.png' %>
<%= image_tag 'team/link.png', :class => 'linked' %>
<%= link_to("#{member.name.titleize}'s Profile'", member.linkedin, :class => 'link') %>
</div>
<div class="aboutme">
<h4><%= member.name %></h4>
<p>
Sean Schofield (<a class="hub" href="https://github.com/schof">aka schof</a>)is the founder of Rails Dog and creator of the Spree project. Prior to discovering Ruby, he worked almost exclusively with Java building large scale web applications.
</p>
</div>
</div>
<% end %>
</div>
<% end %>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment