osem-fcy/app/views/conferences/_booths.html.haml
James Mason 20e2b4b76b Move sponsor modal to a generic partial & redesign.
... use for booths also.
2017-12-22 10:48:55 -08:00

20 lines
760 B
Text

- cache [@conference.confirmed_booths, '#splash#booths'] do
%section#booths
.container
.row
.col-md-12.text-center
%h2 Booths
.row.row-centered
- @conference.confirmed_booths.each do |booth|
.col-md-2.col-sm-2.col-centered.col-top
%a.thumbnail{ href: '#',
data: { toggle: 'modal', target: "#modal-booth-#{booth.id}" } }
- if booth.picture?
= image_tag get_logo(booth),
class: ['img-responsive', 'img-rounded'],
title: booth.title
- else
.caption
%h3.text-center= booth.title
- content_for :modals do
= render 'modal_description', object: booth