Sha256: a39295c51bba6d192245161190f8be3be1d28f0ff7d27e429fbd7c651140ffbc
Contents?: true
Size: 966 Bytes
Versions: 1
Compression:
Stored size: 966 Bytes
Contents
# frozen_string_literal: true # Tag for injecting template rendering. Example tag: # {{cms:template template/path}} # This expands into something like this: # <%= render template: "template/path" %> # Whitelist is can be used to control what templates are available. # class Occams::Content::Tag::Template < Occams::Content::Tag attr_reader :path def initialize(context:, params: [], source: nil) super @path = params[0] unless @path.present? raise Error, "Missing template path for template tag" end end # we output erb into rest of the content def allow_erb? true end def content format("<%%= render template: %<path>p %%>", path: path) end def render whitelist = Occams.config.allowed_templates if whitelist.is_a?(Array) whitelist.member?(@path) ? content : "" else content end end end Occams::Content::Renderer.register_tag( :template, Occams::Content::Tag::Template )
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
occams-1.0.0 | lib/occams/content/tags/template.rb |