Sha256: 66d73eb5f80c0b34361e7742713b8f83776526b3647f3540e3c6b94bc93b97cb
Contents?: true
Size: 1.04 KB
Versions: 14
Compression:
Stored size: 1.04 KB
Contents
module RailsConnector # This module contains helpers that render tags for the html head # and the end of the html body. # @api public module LayoutHelper include TrackingHelper # Renders all tags needed in the html head for the enabled features. # @api public def rails_connector_header_tags html = "".html_safe html += tag('meta', :name => 'generator', :content => "Rails Connector for Infopark CMS Fiona by Infopark AG (www.infopark.de); "\ "Version #{Gem.loaded_specs['infopark_rails_connector'].version}") if Configuration.enabled?(:rss) html += auto_discovery_link_tag(:rss, rss_url, :title => 'RSS Feed') end html += include_edit_marker_support html end # Renders all tags needed at the end of the body tag for the enabled features. # @api public def rails_connector_after_content_tags html = "".html_safe html += render_marker_code html += google_analytics if Configuration.enabled?(:google_analytics) html end end end
Version data entries
14 entries across 14 versions & 1 rubygems