You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
- banner_image @conference.cover_url, id: @conference.cover_attribution_id, name: @conference.cover_attribution_name, user_id: @conference.cover_attribution_user_id, src: @conference.cover_attribution_src
|
|
- page_style (params['controller'] == 'conferences' ? 'article' : 'emphasize-banner')
|
|
|
|
- content_for :banner do
|
|
.row
|
|
.columns.small-12.banner
|
|
%figure
|
|
%img{src: @conference.poster_url}
|
|
.columns.medium-8.align-bottom
|
|
%div
|
|
%h1='Bike!Bike! '+@conference.start_date.year.to_s
|
|
%h2
|
|
- location = @conference.organizations.first.locations.first
|
|
= location.city + ', ' + (location.territory ? Carmen::Country.coded(location.country).subregions.coded(location.territory).name : location.country)
|
|
%em
|
|
= (l @conference.start_date, format: :date) + ' - ' + (l @conference.end_date, format: :date)
|
|
- if params['controller'] != 'conferences'
|
|
%p= ActionView::Base.full_sanitizer.sanitize(@conference.info).gsub(/^(.{300,350}\.)(.*)$/m, '\1...')
|
|
.columns.medium-4.centered.align-bottom
|
|
%div
|
|
- if @conference.registration_open
|
|
%a.button{href: @conference.url(:register)}
|
|
=_'conference.Register_Now'
|
|
- if params['controller'] != 'conferences'
|
|
%a.button.more{href: @conference.url}
|
|
=_'conference.More_Info'
|
|
|