2014-06-14 18:49:10 +05:30
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
2014-06-26 15:13:23 +05:30
|
|
|
%a.smoothscroll{ href: '#location' } Location
|
2014-06-14 18:49:10 +05:30
|
|
|
|
|
|
|
|
|
2014-06-20 22:41:18 +05:30
|
|
|
%div.banner-disp{ style: ("background-image: url(#{@conference.venue.photo})" unless @conference.venue.photo.blank?), class:('with-background' unless @conference.venue.photo.blank?) }
|
2014-06-14 23:37:12 +05:30
|
|
|
%div.container.text-center
|
|
|
|
|
.div.row.col-md-12
|
|
|
|
|
- unless @conference.venue.name.blank?
|
|
|
|
|
%h1
|
|
|
|
|
%strong #{ @conference.venue.name }
|
2014-06-14 18:49:10 +05:30
|
|
|
- unless @conference.venue.address.blank?
|
2014-06-14 23:37:12 +05:30
|
|
|
%h2
|
|
|
|
|
%strong #{ @conference.venue.address }
|
|
|
|
|
- unless @conference.venue.description.blank?
|
2014-08-01 12:23:33 +05:30
|
|
|
.lead
|
2014-06-29 17:44:27 +05:30
|
|
|
= markdown(@conference.venue.description)
|
2014-06-20 20:16:22 +05:30
|
|
|
%ul.location-links
|
2014-06-14 23:37:12 +05:30
|
|
|
- unless @conference.venue.address.blank?
|
|
|
|
|
%li
|
|
|
|
|
%b
|
|
|
|
|
= link_to 'View in Google Maps', "http://maps.google.com/maps?q=#{@conference.venue.address}", target: '_blank'
|
|
|
|
|
- unless @conference.venue.website.blank?
|
|
|
|
|
%li
|
|
|
|
|
%b
|
|
|
|
|
= link_to 'Visit Venue Website', @conference.venue.website, target: '_blank'
|