Sha256: a6ea724a571a33286f1153dfe456b59c8e6f1682cf061d22be54bcd7e106fec3
Contents?: true
Size: 396 Bytes
Versions: 17
Compression:
Stored size: 396 Bytes
Contents
module Models module Extensions module Page module Render def render(context) self.template.render(context) if self.layout self.layout.template.render(context) else ::Liquid::Template.parse("{{ content_for_layout }}").render(context) end end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems