About page

This commit is contained in:
Gregory Eremin
2011-10-24 12:27:06 +04:00
parent 7bad8f16e0
commit 50b5396f11
3 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -8,11 +8,11 @@ class ApplicationController < ActionController::Base
def index; end
def greetings
render_compact_partial :greetings
render partial: 'greetings'
end
def about
render_compact_partial :about
render partial: 'about'
end
protected