24 lines
419 B
Ruby
24 lines
419 B
Ruby
class LandingsController < ApplicationController
|
|
|
|
respond_to :html
|
|
|
|
def watch_bands
|
|
|
|
@promo_buzz = PromoBuzz.active
|
|
|
|
if Rails.application.config.use_promos_on_homepage
|
|
@promo_latest = PromoLatest.active
|
|
else
|
|
@promo_latest, start = Feed.index(nil, limit: 10)
|
|
end
|
|
|
|
page = params['p']
|
|
page = 0 unless p
|
|
|
|
if page == 0
|
|
render 'watch_bands', layout: 'web'
|
|
end
|
|
end
|
|
end
|
|
|