2014-11-14 11:58:36 +01:00
|
|
|
.container
|
|
|
|
|
.row
|
2014-11-20 14:57:03 +01:00
|
|
|
.col-md-12
|
|
|
|
|
%h2.text-center
|
|
|
|
|
Program
|
|
|
|
|
%p.lead.text-center
|
|
|
|
|
= @conference.short_title
|
|
|
|
|
has the most awesome program ever!
|
2014-11-21 13:22:20 +01:00
|
|
|
- if @conference.splashpage and @conference.tracks.any? and @conference.splashpage.include_tracks
|
2014-11-20 14:57:03 +01:00
|
|
|
See rock-star speakers cover the topics of
|
|
|
|
|
- if @conference.splashpage and @conference.splashpage.include_tracks
|
|
|
|
|
- @conference.tracks.each_slice(3) do |slice|
|
|
|
|
|
.row.row-centered
|
|
|
|
|
- slice.each do |track|
|
2014-11-20 16:52:55 +01:00
|
|
|
.col-md-4.col-sm-4.col-centered.col-top.track
|
2014-11-20 14:57:03 +01:00
|
|
|
%h4.text-center
|
|
|
|
|
= track.name
|
|
|
|
|
= markdown(track.description)
|
|
|
|
|
|
2014-11-25 10:47:18 +01:00
|
|
|
- if @conference.call_for_paper and @conference.call_for_paper.schedule_public
|
2014-11-20 14:57:03 +01:00
|
|
|
.row
|
|
|
|
|
.col-md-12
|
|
|
|
|
%p.cta-button.text-center
|
2014-11-27 14:31:44 +01:00
|
|
|
= link_to(schedule_conference_path(@conference.short_title), class: 'btn btn-default btn-lg') do
|
2014-11-20 14:57:03 +01:00
|
|
|
Full Schedule
|
|
|
|
|
|
|
|
|
|
- #FIXME: Display keynotes https://github.com/openSUSE/osem/issues/544
|
|
|
|
|
- #FIXME: Display schedule highlights https://github.com/openSUSE/osem/issues/545
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
= content_for :splash_nav do
|
|
|
|
|
%li
|
|
|
|
|
=link_to('#program', class: 'smoothscroll') do
|
2014-11-25 10:47:18 +01:00
|
|
|
Program
|