-<% %>
+<div class="winner">
<% if result.winner? and result.winners.length == 1%>
- <p><em>The winner is:
- <strong><%=h @candidates[result.winner].name.capitalize %></strong></em></p>
+ <p>The winner is:
+ <strong><%=h @candidates[result.winner].name.capitalize %></strong></p>
<% elsif result.winner? and result.winners.length > 1 %>
- <p><em>There was a tie. The winners are: <strong><%=h( result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") )%></strong></em></p>
+ <p>There was a tie. The winners are: <strong><%=h( result.winners.collect {|w| @candidates[w].to_s.capitalize}.join(", ") )%></strong></p>
<% else %>
- <p><em>There is no winner using this method. </em></strong></p>
+ <p>There is no winner using this method. </strong></p>
<% end %>
+</div>