# encoding: UTF-8 class WelcomeController < ApplicationController def index @info = Information.where("type_of = 0").first end def show_information @information = Information.where("id = ?",params[:id]).first end end