class Zine::TemplateFiles

Trio of templates used to create a page

Attributes

body[R]
header[R]

Public Class Methods

new(body, header, footer) click to toggle source
# File lib/zine/templates.rb, line 8
def initialize(body, header, footer)
  @body = body
  @header = header
  @footer = footer
end