diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/frontpage_controller.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/controllers/frontpage_controller.rb b/app/controllers/frontpage_controller.rb new file mode 100644 index 000000000..3eaaf70b6 --- /dev/null +++ b/app/controllers/frontpage_controller.rb @@ -0,0 +1,10 @@ +class FrontpageController < ApplicationController + layout "default" + + def index + respond_to do |format| + format.html + end + end +end + |