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
|
|
|
|
2014-11-14 11:58:36 +01:00
|
|
|
.container
|
|
|
|
|
.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
|
|
|
|
|
- if @conference.event_types.any?
|
|
|
|
|
You can submit proposals for
|
|
|
|
|
= "#{event_types(@conference)}."
|
|
|
|
|
- if @conference.tracks.any?
|
|
|
|
|
Proposals should fit in one of the
|
|
|
|
|
= "#{pluralize(@conference.tracks.count, 'track')}:"
|
|
|
|
|
= "#{tracks(@conference)}."
|
|
|
|
|
The submission period has begun
|
|
|
|
|
%em
|
2014-11-25 10:47:18 +01:00
|
|
|
= @conference.call_for_paper.start_date.strftime('%A, %B %-d. %Y')
|
2014-11-20 14:57:03 +01:00
|
|
|
and closes
|
|
|
|
|
%em
|
2014-11-25 10:47:18 +01:00
|
|
|
= @conference.call_for_paper.end_date.strftime('%A, %B %-d. %Y.')
|
2014-11-20 14:57:03 +01:00
|
|
|
That means you have only
|
2014-11-25 10:47:18 +01:00
|
|
|
- days = (@conference.call_for_paper.end_date - Date.today).to_i
|
2014-11-20 14:57:03 +01:00
|
|
|
%b
|
|
|
|
|
= pluralize(days, 'days')
|
|
|
|
|
left!
|
|
|
|
|
Remember
|
|
|
|
|
= @conference.short_title
|
|
|
|
|
will only be as good as the sessions you present. Submit early, submit often!
|
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
|
2014-11-25 10:47:18 +01:00
|
|
|
= link_to "Submit your paper now", conference_proposal_index_path(@conference.short_title), class: 'btn btn-success btn-lg text-center'
|