10 lines
141 B
Ruby
10 lines
141 B
Ruby
|
|
class HomeController < ApplicationController
|
||
|
|
|
||
|
|
caches_page :index
|
||
|
|
|
||
|
|
def index
|
||
|
|
@static_page = StaticPage['home-blv20']
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|