Sha256: e22d37d7d126e0a93687f26259b553e73b97ff3d1d770783e9a8c279e8e906a9
Contents?: true
Size: 1.3 KB
Versions: 8
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true module Tramway module Landing module ApplicationHelper include Tramway::Admin::RussianCasesHelper include Tramway::Profiles::LinksHelper if defined?(::Tramway::Profiles) def actual_forms(forms) forms = forms.reject { |f| f.form_name == 'user_sign_up' } if @signed_in forms = forms.reject { |f| f.form_name == 'user_sign_in' } if @signed_in forms end def block_title(block) if block.is_a? Array block.each do |current_block| current_block.page.title end else if block.page.page_type.main? content_for?(:application_name) && content_for(:application_name).present? ? content_for(:application_name) : @application.public_name else block.page.title end end end def block_tagline(block) if block.is_a? Array block.each do |_current_block| raw _current_block.page.body end else if block.page.page_type.main? content_for?(:application_tagline) && content_for(:application_tagline).present? ? content_for(:application_tagline) : @application.tagline else raw block.page.body end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems