From 0c196010685afedac8c897307b8d8d5ece259c0d Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Thu, 29 Oct 2009 02:46:58 -0700 Subject: [PATCH] adding info controller support and view for about page --- app/controllers/info_controller.rb | 7 +++++++ app/views/info/about.html.erb | 9 +++++++++ 2 files changed, 16 insertions(+) create mode 100644 app/views/info/about.html.erb diff --git a/app/controllers/info_controller.rb b/app/controllers/info_controller.rb index f8a115c..14f44f8 100644 --- a/app/controllers/info_controller.rb +++ b/app/controllers/info_controller.rb @@ -1,2 +1,9 @@ class InfoController < ApplicationController + + def about + respond_to do |format| + format.html + format.xml + end + end end diff --git a/app/views/info/about.html.erb b/app/views/info/about.html.erb new file mode 100644 index 0000000..db6df1b --- /dev/null +++ b/app/views/info/about.html.erb @@ -0,0 +1,9 @@ +
+
+

about

+

this is just a simple site I use to showcase my flickr photos and uploaded screenshots + from little snapper.

+

i may consider open sourcing it later, but it's not anything that someone of average + rails ability couldn't do in a couple of hours.

+
+
\ No newline at end of file