2014-05-28 14:49:00 +05:30
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
2014-06-26 15:13:23 +05:30
|
|
|
%a.smoothscroll{ href: '#program' } Program
|
2014-05-28 14:49:00 +05:30
|
|
|
|
|
|
|
|
%div.container.text-center
|
|
|
|
|
%div.row
|
|
|
|
|
%div.col-md-12
|
|
|
|
|
%h1 Program
|
|
|
|
|
- if @conference.call_for_papers and @conference.call_for_papers.schedule_public
|
2014-06-12 22:05:47 +03:00
|
|
|
%span You can check out our
|
2014-05-28 14:49:00 +05:30
|
|
|
%span
|
2014-06-12 22:05:47 +03:00
|
|
|
= link_to 'Schedule', conference_schedule_path(@conference.short_title), target: '_blank'
|
2014-06-12 22:14:49 +03:00
|
|
|
- else
|
|
|
|
|
%span The schedule is not ready yet. Stay tuned!
|
2014-06-12 22:05:47 +03:00
|
|
|
-unless @conference.tracks.blank?
|
2014-06-18 22:25:42 +05:30
|
|
|
- if @conference.include_tracks_in_splash?
|
|
|
|
|
= render 'tracks'
|
2014-05-28 14:49:00 +05:30
|
|
|
|