2014-05-22 16:32:50 +05:30
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
2014-06-26 15:13:23 +05:30
|
|
|
%a.smoothscroll{ href: '#callforpapers' } Call For Papers
|
2014-05-22 16:32:50 +05:30
|
|
|
|
2017-11-21 09:54:27 -08:00
|
|
|
- cache [@conference, @conference.call_for_events, @conference.confirmed_tracks,
|
|
|
|
|
'#splash#callforpapers'] do
|
|
|
|
|
%section#callforpapers
|
|
|
|
|
.container
|
2014-11-14 11:58:36 +01:00
|
|
|
.row
|
|
|
|
|
.col-md-12.text-center
|
2014-11-20 14:57:03 +01:00
|
|
|
%h2
|
|
|
|
|
Call for Papers
|
|
|
|
|
%p.lead
|
|
|
|
|
We are ready to accept your proposals for sessions!
|
|
|
|
|
.row
|
2014-11-20 16:52:55 +01:00
|
|
|
.col-md-6.col-md-offset-3.col-sm-10.col-sm-offset-1
|
2014-11-20 14:57:03 +01:00
|
|
|
%p
|
2017-11-17 19:34:26 -08:00
|
|
|
- if @conference.event_types.any?
|
2014-11-20 14:57:03 +01:00
|
|
|
You can submit proposals for
|
2016-03-26 23:32:43 +01:00
|
|
|
%span.notranslate
|
|
|
|
|
= "#{event_types(@conference)}."
|
2017-11-17 19:34:26 -08:00
|
|
|
- if @conference.confirmed_tracks.any?
|
2014-11-20 14:57:03 +01:00
|
|
|
Proposals should fit in one of the
|
2016-03-26 23:32:43 +01:00
|
|
|
%span.notranslate
|
2017-11-17 19:34:26 -08:00
|
|
|
= "#{pluralize(@conference.confirmed_tracks.length, 'track')}:"
|
2016-03-26 23:32:43 +01:00
|
|
|
= "#{tracks(@conference)}."
|
2017-11-17 19:34:26 -08:00
|
|
|
- if @conference.call_for_events.try(:open?)
|
|
|
|
|
The submission period is open
|
|
|
|
|
%em.notranslate
|
|
|
|
|
= "#{date_string(@conference.call_for_events.start_date,
|
|
|
|
|
@conference.call_for_events.end_date)}."
|
|
|
|
|
%b
|
|
|
|
|
You have
|
|
|
|
|
= pluralize(@conference.call_for_events.remaining_days, 'day')
|
|
|
|
|
left!
|
2015-08-21 19:15:02 +02:00
|
|
|
Remember
|
2016-03-26 23:32:43 +01:00
|
|
|
%span.notranslate
|
2017-11-17 19:34:26 -08:00
|
|
|
= @conference.title
|
|
|
|
|
will only be as good as the sessions you present.
|
|
|
|
|
Submit early, submit often!
|
2015-08-21 19:15:02 +02:00
|
|
|
- else
|
|
|
|
|
The submission period is closed.
|
2014-11-14 11:58:36 +01:00
|
|
|
.row
|
|
|
|
|
.col-md-12.text-center
|
2014-11-20 14:57:03 +01:00
|
|
|
%p.cta-button
|
2017-11-17 19:34:26 -08:00
|
|
|
= link_to "Submit your paper now",
|
|
|
|
|
conference_program_proposals_path(@conference.short_title),
|
|
|
|
|
class: 'btn btn-success btn-lg text-center'
|