Sha256: 984959f681ca41f64970be8d91b018f22003e47a0f42942a1de0421b6bef7f0e
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding : utf-8 -*- # ============================================================================ # RAILS BOOTSTRAP ENGINE # ============================================================================ # # Copyright 2012-2013 Luiz Eduardo de Oliveira Fonseca, AgĂȘncia Orangeweb # # Licensed under The MIT License # # http://opensource.org/licenses/MIT # # ============================================================================ module BootstrapEngineHelper # Describes the Vendor Brand Name def vendor_brand "Minha Empresa" end # Describes the Vendor Url def vendor_url 'http://www.minhaempresa.com.br' end # Describes the Application Brand Name def application_brand "Bootstrap Engine Helper" end # Represents the Page title def page_title(title="") content_for :header_title do "#{title} | #{ application_brand }" end end # Represents the Copyright Info def copyright_info content_tag :p, link_to(raw("© #{vendor_brand} #{Date.today.year}"), vendor_url) end end
Version data entries
6 entries across 6 versions & 1 rubygems