Sha256: 007b50b0d6196b3c32a47b3e52839bc2e0c798eb35f96524d2db308a760bc5bc
Contents?: true
Size: 580 Bytes
Versions: 13
Compression:
Stored size: 580 Bytes
Contents
module Locomotive module Steam module Liquid module Tags class PathTo < ::Liquid::Tag include Concerns::Attributes include Concerns::I18nPage include Concerns::Path def render(context) render_path(context) end def wrong_syntax! raise SyntaxError.new("Valid syntax: path_to <page|page_handle|content_entry>(, locale: [fr|de|...], with: <page_handle>") end end ::Liquid::Template.register_tag('path_to'.freeze, PathTo) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems