asciinema.org/app/controllers/pages_controller.rb
2013-10-25 20:01:56 +02:00

10 lines
112 B
Ruby

class PagesController < ApplicationController
layout 'pages'
def show
render params[:page]
end
end