about_controller.rb 309 Bytes
Newer Older
Galen Evilla's avatar
Galen Evilla committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
class AboutController < ApplicationController

	def index
		render "pages/about.html.erb"
	end

	def evilla
		render "/about/evilla.html.erb"
	end

	def gomez
		render "/about/gomez.html.erb"
	end

	def guian
		render "/about/guian.html.erb"
	end

	def principe
		render "/about/principe.html.erb"
	end

end