Sha256: 0044b3b1e4096a0f4bc2d892d10dbde4e26cb273a67ae3b8e4b5a3fc4c4a96a7

Contents?: true

Size: 666 Bytes

Versions: 1

Compression:

Stored size: 666 Bytes

Contents

# encoding: utf-8

module Nanoc
  class MutableLayoutCollectionView < Nanoc::MutableIdentifiableCollectionView
    # @api private
    def view_class
      Nanoc::MutableLayoutView
    end

    # Creates a new layout and adds it to the site’s collection of layouts.
    #
    # @param [String] content The layout content.
    #
    # @param [Hash] attributes A hash containing this layout's attributes.
    #
    # @param [Nanoc::Identifier, String] identifier This layout's identifier.
    #
    # @return [self]
    def create(content, attributes, identifier)
      @objects << Nanoc::Int::Layout.new(content, attributes, identifier)
      self
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nanoc-4.0.0b2 lib/nanoc/base/views/mutable_layout_collection.rb