Sha256: d26c0ed51c91561f6d4a9724106a5261c377aba3039ec92c3ed87b1cda551c09

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

module Jekyll

  class Layout
    include Convertible
    
    attr_accessor :ext
    attr_accessor :data, :content
    
    # Initialize a new Layout.
    #   +base+ is the String path to the <source>
    #   +name+ is the String filename of the post file
    #
    # Returns <Page>
    def initialize(base, name)
      @base = base
      @name = name
      
      self.data = {}
      
      self.process(name)
      self.read_yaml(base, name)
    end
    
    # Extract information from the layout filename
    #   +name+ is the String filename of the layout file
    #
    # Returns nothing
    def process(name)
      self.ext = File.extname(name)
    end
 
    # Add any necessary layouts to this post
    #   +layouts+ is a Hash of {"name" => "layout"}
    #   +site_payload+ is the site payload hash
    #
    # Returns nothing
    def add_layout(layouts, site_payload)
      payload = {"page" => self.data}.deep_merge(site_payload)
      self.content = Liquid::Template.parse(self.content).render(payload, [Jekyll::Filters])
    
      layout = layouts[self.data["layout"]] || self.content
      payload = {"content" => self.content, "page" => self.data}
    
      self.content = Liquid::Template.parse(layout).render(payload, [Jekyll::Filters])
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jsjohnst-jekyll-0.4.1.999.1 lib/jekyll/layout.rb
jsjohnst-jekyll-0.4.1.999.2 lib/jekyll/layout.rb
jsjohnst-jekyll-0.4.1.999.3 lib/jekyll/layout.rb
jsjohnst-jekyll-0.4.1.999.4 lib/jekyll/layout.rb
jsjohnst-jekyll-0.4.1.999.6 lib/jekyll/layout.rb