af83/chouette-core

View on GitHub
app/helpers/title_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TitleHelper

  def title(title = nil)
    if title
      @title = strip_tags(title)
      title
    else
      @title
    end
  end

  def title_tag(title, options = nil)
    content_tag :h2, title(title).html_safe, options
  end

end