class Lookbook::Collection

def initialize(path = "", items = [])

def initialize(path = "", items = [])
  if path.is_a?(Array)
    @items = path
    path = ""
  else
    @items = items
  end
  @path = path.delete_prefix("/").delete_suffix("/")
end