2017-11-27 20:04:54 -08:00
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
|
|
|
|
%a.smoothscroll{ href: '#program' } Program
|
|
|
|
|
|
2017-12-21 19:06:36 -08:00
|
|
|
- cache [conference, highlights, tracks, booths, '#splash#program'] do
|
2017-11-27 20:04:54 -08:00
|
|
|
%section#program
|
|
|
|
|
.container
|
|
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
%p.lead.text-center
|
|
|
|
|
%span.notranslate
|
|
|
|
|
= conference.title
|
|
|
|
|
has the most awesome program ever!
|
|
|
|
|
|
2017-12-21 19:06:36 -08:00
|
|
|
- unless highlights.blank?
|
|
|
|
|
= render 'highlights', conference_id: conference.short_title,
|
|
|
|
|
highlights: highlights
|
2017-11-27 20:04:54 -08:00
|
|
|
|
|
|
|
|
- if conference.splashpage.include_tracks
|
2017-12-21 19:06:36 -08:00
|
|
|
- unless tracks.blank?
|
|
|
|
|
= render 'tracks', tracks: tracks
|
2017-11-27 20:04:54 -08:00
|
|
|
|
|
|
|
|
- if conference.splashpage.include_booths
|
2017-12-21 19:06:36 -08:00
|
|
|
- unless booths.blank?
|
|
|
|
|
= render 'booths', booths: booths
|
2017-11-27 20:04:54 -08:00
|
|
|
|
|
|
|
|
- if conference.program.try(:schedule_public?)
|
|
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
%p.cta-button.text-center
|
|
|
|
|
= link_to(conference_schedule_path(conference.short_title),
|
|
|
|
|
class: 'btn btn-success btn-lg') do
|
|
|
|
|
Full Schedule
|
2017-11-29 15:29:06 -08:00
|
|
|
|
2017-12-21 19:06:36 -08:00
|
|
|
- unless booths.blank?
|
|
|
|
|
- booths.each do |booth|
|
|
|
|
|
- content_for :modals do
|
|
|
|
|
= render 'modal_description', object: booth
|