ssplatt/the_dw

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper
  
  # Returns the full title on a per-page basis.
  def full_title(page_title = '')
    base_title = "The DW"
    if page_title.empty?
      base_title
    else
      page_title + " | " + base_title
    end
  end
end