Skip to content

Commit

Permalink
remove evil br and substitute with div
Browse files Browse the repository at this point in the history
  • Loading branch information
PragTob committed Jun 2, 2014
1 parent 0695472 commit 72390bd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions source/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
<% (data.supporters.usergroups + data.supporters.conferences).each do |supporter| %>
<li class="supporters--item">
<h3 class="supporters--item-name"><%= supporter.name %></h3>
<span class="supporters--item-location"><%= supporter.city %>/<%= supporter.country %></span>
<a class="supporters--item-link" href="<%= supporter.link %>"><%=
supporter.link.sub(%r(https?://), '') %></a><br>
<div class="user group">
<span class="supporters--item-location"><%= supporter.city %>/<%= supporter.country %></span>
<a class="supporters--item-link" href="<%= supporter.link %>"><%=
supporter.link.sub(%r(https?://), '') %></a>
</div>
<strong>Contacts</strong>
<ul>
<% supporter.contacts.each do |contact|%>
Expand Down

0 comments on commit 72390bd

Please sign in to comment.