Move the venue description to below the map.
This commit is contained in:
parent
9a811b4a6c
commit
722bd8c008
2 changed files with 5 additions and 4 deletions
|
|
@ -5,10 +5,6 @@
|
||||||
- cache [venue, lodgings, '#splash#lodging'] do
|
- cache [venue, lodgings, '#splash#lodging'] do
|
||||||
%section#lodging
|
%section#lodging
|
||||||
.container
|
.container
|
||||||
- if venue.location? and venue.description.present?
|
|
||||||
.row
|
|
||||||
.col-md-8.col-md-offset-2
|
|
||||||
= markdown(venue.description, escape_html=false)
|
|
||||||
.row
|
.row
|
||||||
.col-md-12.text-center
|
.col-md-12.text-center
|
||||||
%h2
|
%h2
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,11 @@
|
||||||
%section#venue
|
%section#venue
|
||||||
- if venue.location?
|
- if venue.location?
|
||||||
= render '/conferences/venue_map', venue: venue
|
= render '/conferences/venue_map', venue: venue
|
||||||
|
- if venue.description.present?
|
||||||
|
.container
|
||||||
|
.row
|
||||||
|
.col-md-8.col-md-offset-2
|
||||||
|
= markdown(venue.description, escape_html=false)
|
||||||
- else
|
- else
|
||||||
- cache [venue, commercial, '#splash#venue'] do
|
- cache [venue, commercial, '#splash#venue'] do
|
||||||
.container
|
.container
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue