2018-02-01 08:52:14 -08:00
|
|
|
- cache([conference_id, call, event_types, tracks, '#splash#callforpapers'],
|
|
|
|
|
expires_in: 1.hour) do
|
2018-03-17 18:05:06 +02:00
|
|
|
.col-md-4.col-sm-4.text-center
|
2017-11-27 20:04:54 -08:00
|
|
|
%h2
|
|
|
|
|
Call for Papers
|
|
|
|
|
%p.lead
|
|
|
|
|
We are now accepting proposals for sessions!
|
|
|
|
|
%p
|
2017-12-21 19:06:36 -08:00
|
|
|
- if event_types.any?
|
2017-11-27 20:04:54 -08:00
|
|
|
You can submit proposals for
|
|
|
|
|
%span.notranslate
|
2017-12-21 19:06:36 -08:00
|
|
|
= event_types.map(&:pluralize).to_sentence + '.'
|
|
|
|
|
- if tracks.any?
|
2017-11-27 20:04:54 -08:00
|
|
|
Proposals should fit in one of the
|
|
|
|
|
%span.notranslate
|
2017-12-21 19:06:36 -08:00
|
|
|
= pluralize(tracks.length, 'track') + ':'
|
|
|
|
|
= tracks.to_sentence + '.'
|
|
|
|
|
The submission period is open
|
|
|
|
|
%em.notranslate
|
|
|
|
|
= date_string(call.start_date, call.end_date) + '.'
|
|
|
|
|
%b
|
|
|
|
|
You have
|
|
|
|
|
= pluralize(call.remaining_days, 'day')
|
|
|
|
|
left!
|
2017-11-27 20:04:54 -08:00
|
|
|
%p.cta-button
|
|
|
|
|
= link_to "Submit your proposal now",
|
2018-01-09 17:21:14 +05:30
|
|
|
new_conference_program_proposal_path(conference_id),
|
2017-11-27 20:04:54 -08:00
|
|
|
class: 'btn btn-success btn-lg text-center'
|