Sha256: 5feac858f7c40f8f48a4ed4f1675f3a20d3c1609bccfa9be10d24a2af3583dd9

Contents?: true

Size: 627 Bytes

Versions: 3

Compression:

Stored size: 627 Bytes

Contents

# These helper methods can be called in your template to set variables to be used in the layout
# This module should be included in all views globally,
# to do so you may need to add this line to your ApplicationController
#   helper :layout
module LayoutHelper
  def title(page_title, show_title = true)
    content_for(:title) { h(page_title.to_s) }
    @show_title = show_title
  end

  def show_title?
    @show_title
  end

  def stylesheet(*args)
    content_for(:head) { stylesheet_link_tag(*args) }
  end

  def javascript(*args)
    content_for(:head) { javascript_include_tag(*args) }
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
focus-generator-0.0.1 lib/generators/fcus/layout/templates/layout_helper.rb
elements-0.2.1 app/helpers/layout_helper.rb
elements-0.2.0 app/helpers/layout_helper.rb