Merge pull request #235 from differentreality/conference_show
Conference show
This commit is contained in:
commit
24ac1778a5
3 changed files with 10 additions and 8 deletions
|
|
@ -6,13 +6,12 @@
|
||||||
%div.row
|
%div.row
|
||||||
%div.col-md-12
|
%div.col-md-12
|
||||||
%h1 Program
|
%h1 Program
|
||||||
- if !@conference.description.blank?
|
|
||||||
%p
|
|
||||||
= @conference.description
|
|
||||||
- if @conference.call_for_papers and @conference.call_for_papers.schedule_public
|
- if @conference.call_for_papers and @conference.call_for_papers.schedule_public
|
||||||
%span You can find the complete schedule in our
|
%span You can check out our
|
||||||
%span
|
%span
|
||||||
= link_to 'Master Schedule', conference_schedule_path(@conference.short_title), target: '_blank'
|
= link_to 'Schedule', conference_schedule_path(@conference.short_title), target: '_blank'
|
||||||
-if !@conference.tracks.blank?
|
- else
|
||||||
|
%span The schedule is not ready yet. Stay tuned!
|
||||||
|
-unless @conference.tracks.blank?
|
||||||
= render 'tracks'
|
= render 'tracks'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
= content_for :brand do
|
= content_for :brand do
|
||||||
= link_to @conference.title, conference_url(@conference.short_title), class: 'navbar-brand'
|
= link_to @conference.title, conference_url(@conference.short_title), class: 'navbar-brand'
|
||||||
|
|
||||||
|
- unless @conference.description.blank?
|
||||||
|
%p= @conference.description
|
||||||
%div#program
|
%div#program
|
||||||
= render 'program'
|
= render 'program'
|
||||||
%div#registration
|
%div#registration
|
||||||
|
|
@ -10,4 +13,4 @@
|
||||||
%div#sponsors
|
%div#sponsors
|
||||||
= render 'sponsor'
|
= render 'sponsor'
|
||||||
%div#social-media
|
%div#social-media
|
||||||
= render 'social_media'
|
= render 'social_media'
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
<h5>
|
<h5>
|
||||||
<span class="glyphicon glyphicon-comment"></span>
|
<span class="glyphicon glyphicon-comment"></span>
|
||||||
<%= event[0].title %>
|
<%= event[0].title %>
|
||||||
<% unless event[0].subtitle.empty? %>
|
<% unless event[0].subtitle.blank? %>
|
||||||
<span class="schedule-subtitle">
|
<span class="schedule-subtitle">
|
||||||
<%= event[0].subtitle %>
|
<%= event[0].subtitle %>
|
||||||
<span>
|
<span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue