osem-fcy/app/views/conference/show.html.haml
Gopesh Tulsyan 0b6b046016 Adds lodging splash view
Check for venue photo before rendering
2014-06-16 22:56:12 +05:30

22 lines
605 B
Text

= content_for :brand do
= link_to @conference.title, conference_url(@conference.short_title), class: 'navbar-brand'
- unless @conference.description.blank?
%p= @conference.description
%div#program
= render 'program'
%div#registration
= render 'registration'
-unless @conference.call_for_papers.blank?
%div#callforpapers
= render 'call_for_papers'
-unless @conference.venue.blank?
%div#location
= render 'location'
- if @conference.venue
- unless @conference.venue.lodgings.empty?
= render 'lodging'
%div#sponsors
= render 'sponsor'
%div#social-media
= render 'social_media'