houdini/app/views/events/_location.html.erb

17 lines
790 B
Text
Raw Normal View History

2020-06-12 20:03:43 +00:00
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
<% addr = Format::Address.full_address(@event.address, @event.city, @event.state_code, @event.zip_code) %>
<aside class='u-marginBottom--15 u-centered pastelBox--grey u-relative'>
<header>Location</header>
<div class='pastelBox-body'>
<h6 class='u-marginTop--0'><%= @event.venue_name %></h6>
<p class='strong u-marginBottom--20'>
<%= @event.address %><br>
<%= @event.city %>, <%= @event.state_code %> <%= @event.zip_code %>
</p>
<a class='strong' href="http://maps.google.com/?q=<%= addr %>" target='_blank' if-branded='color, darker'>
<i class='fa fa-map-marker'></i>&nbsp; View on Map
</a>
</div>
</aside>