2014-05-28 13:44:37 -07:00
|
|
|
= content_for :brand do
|
|
|
|
|
= link_to @conference.title, conference_url(@conference.short_title), class: 'navbar-brand'
|
2014-06-12 22:13:12 +03:00
|
|
|
|
|
|
|
|
- unless @conference.description.blank?
|
|
|
|
|
%p= @conference.description
|
2014-06-18 22:25:42 +05:30
|
|
|
|
|
|
|
|
- if @conference.include_program_in_splash?
|
|
|
|
|
%section{ id: 'program' }
|
|
|
|
|
.pad
|
|
|
|
|
= render 'program'
|
|
|
|
|
|
|
|
|
|
- if @conference.include_registrations_in_splash?
|
|
|
|
|
%section{ id: 'registration' }
|
2014-06-14 23:37:12 +05:30
|
|
|
.pad
|
2014-06-18 22:25:42 +05:30
|
|
|
= render 'registration'
|
2014-06-14 23:37:12 +05:30
|
|
|
|
|
|
|
|
|
2014-06-05 13:50:05 +05:30
|
|
|
-unless @conference.call_for_papers.blank?
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.call_for_papers.include_cfp_in_splash?
|
|
|
|
|
%section{ id:'callforpapers' }
|
|
|
|
|
.pad
|
|
|
|
|
= render 'call_for_papers'
|
|
|
|
|
|
2014-06-14 18:49:10 +05:30
|
|
|
-unless @conference.venue.blank?
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.venue.include_venue_in_splash?
|
|
|
|
|
%section{ id: 'location' }
|
|
|
|
|
.pad
|
|
|
|
|
= render 'location'
|
2014-06-14 23:37:12 +05:30
|
|
|
- unless @conference.venue.lodgings.empty?
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.venue.include_lodgings_in_splash?
|
|
|
|
|
= render 'lodging'
|
2014-06-14 23:37:12 +05:30
|
|
|
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.include_sponsors_in_splash?
|
|
|
|
|
%section{ id: 'sponsors' }
|
|
|
|
|
.pad
|
|
|
|
|
= render 'sponsor'
|
2014-06-14 23:37:12 +05:30
|
|
|
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.include_social_media_in_splash?
|
|
|
|
|
%section{ id: 'social-media' }
|
|
|
|
|
.pad
|
|
|
|
|
= render 'social_media'
|
2014-06-14 23:37:12 +05:30
|
|
|
|