7 lines
140 B
Ruby
7 lines
140 B
Ruby
class LandingsController < ApplicationController
|
|
def show
|
|
@explorer = PopularPostExplorer.new
|
|
render :layout => "blank"
|
|
end
|
|
end
|