diff --git a/site/docs/collections.md b/site/docs/collections.md index 3bf9d989..23ac190a 100644 --- a/site/docs/collections.md +++ b/site/docs/collections.md @@ -61,40 +61,7 @@ choice and written out to `/my_collection/some_subdir/some_doc.html`. ### Collections -Each collection is part of the `site.collections` array in Liquid. Each collection has the following attributes: - -
- - - - - - - - - - - - - - - - - -
VariableDescription
-

label

-
-

- The name of the collection. -

-
-

docs

-
-

- An array of Documents contained in this collection. -

-
-
+Each collection is accessible via the `site` Liquid variable. For example, if you want to access the `albums` collection found in `_albums`, you'd use `site.albums`. Each collection is itself an array of documents (e.g. `site.albums` is an array of documents, much like `site.pages` and `site.posts`). See below for how to access attributes of those documents. ### Documents