class Jekyll::Strapi::StrapiDrop

Main Liquid Drop, handles lazy loading of collections to drops

Public Class Methods

new(site) click to toggle source
# File lib/jekyll/strapi/drops.rb, line 53
def initialize(site)
  @site = site
end

Public Instance Methods

collections() click to toggle source
# File lib/jekyll/strapi/drops.rb, line 57
def collections
  @collections ||= StrapiCollectionsDrop.new(@site.strapi_collections)
end