20 lines
760 B
Text
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
|