mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
8020b06f45
Tweaked layout for contest page Various styling updates
25 lines
576 B
Text
25 lines
576 B
Text
<div id="map">
|
|
<h1 class="fancy">
|
|
<span><%=h @map.name %></span>
|
|
</h1>
|
|
|
|
<% if @map.picture.length > 0 %>
|
|
<div class="preview">
|
|
<%= image_tag @map.picture %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<% if @map.download.length > 0 %>
|
|
<strong>Download</strong><br>
|
|
<p><%= link_to (h @map.download), (h @map.download) %></p>
|
|
<% end %>
|
|
|
|
<h4>Played in Contests</h4>
|
|
<ul class="disc">
|
|
<% @map.contests.each do |contest| %>
|
|
<li><%= namelink contest %></li>
|
|
<% end %>
|
|
</ul>
|
|
|
|
<%= link_to 'Edit Map', edit_map_path(@map), class: 'button' %>
|
|
</div>
|