class LegalsController < ApplicationController

def show
  @legal = Legal.find{ |t| t.title.parameterize == params[:id]}
end

end