Sha256: 49c209139cfab9c53314b654d9e6d5990ab6063e80ea9ed2ba6872ce98b6628f
Contents?: true
Size: 793 Bytes
Versions: 5
Compression:
Stored size: 793 Bytes
Contents
setting_opts group: :webpage, position: 1, rule_type_editable: false, short_help_text: "head tag content", help_text: "head tag content" format :html do # when *head is rendered in the main body of a page, we escape the HTML # otherwise (most typically in the head tag, of course), we render the # HTML unescaped view :core, cache: :never do escape_in_main do nest root.card, view: :head # note that the head tag for each card is different # (different title, different style rules, etc) # so we don't cache the core of *head, but we _do_ cache some # views within each head (see all/head.rb) end end view :input do "Content can't be edited." end def escape_in_main main? ? (h yield) : yield end end
Version data entries
5 entries across 5 versions & 1 rubygems