class LegalsController < ApplicationController

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

end