32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
= content_for :happening_now do
|
|
#happening-now
|
|
= render 'happening_now', conference: conference,
|
|
events_schedules: events_schedules, pagy: pagy,
|
|
events_schedules_length: events_schedules_length,
|
|
events_schedules_limit: events_schedules_limit
|
|
|
|
= content_for :about do
|
|
#about
|
|
.row
|
|
%h2.text-left{ style: 'margin-bottom:30px' } About the Conference
|
|
= markdown(conference.description, false)
|
|
|
|
%section#about-and-happening-now
|
|
.container
|
|
.row
|
|
-# happening now events are displayed second in md or lg view
|
|
- if conference.splashpage.include_happening_now?
|
|
- if conference.description.present?
|
|
.col-md-6.col-md-push-6.col-lg-4.col-lg-push-8
|
|
= yield :happening_now
|
|
- else
|
|
.col-md-12
|
|
= yield :happening_now
|
|
- if conference.description.present?
|
|
- if conference.splashpage.include_happening_now?
|
|
.col-md-6.col-md-pull-6.col-lg-8.col-lg-pull-4
|
|
= yield :about
|
|
- else
|
|
.col-md-12
|
|
= yield :about
|
|
.trapezoid
|