Skip to content

A plugin for creating a real hierarchical navigation, following folders and documents, in Eleventy projects.

License

Notifications You must be signed in to change notification settings

TigersWay/eleventy-plugin-ancestry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@tigersway/eleventy-plugin-ancestry GitHub last commit GitHub issues

A plugin for creating a real hierarchical navigation, following folders and documents, in Eleventy projects.

Install npm

npm install @tigersway/eleventy-plugin-ancestry

Open up your Eleventy config file (probably .eleventy.js) and use addPlugin:

const pluginAncestry = require("@tigersway/eleventy-plugin-ancestry");
module.exports = function(eleventyConfig) {
  eleventyConfig.addPlugin(pluginAncestry);
};

Usage

See sample/index.md & sample/_includes/base.njk for examples how to access children/parent.

Supplied filters

  • find: Gives access to one - if it exists - collections.all element.

  • children: Gives access to the folder or subfolders collections.all elements.

  • sorted: Allows to sort any collection with a deep property.

  • ancestors(v0.5): Gives access to the parents/ancestors of the elements

Notes

  • As of today, the use of _index (to allow easier search of parent) is not included in Eleventy #1057 & #774.
    A permalink rewrite in root directory data file imposes eleventyComputed in @11ty/eleventy@0.11.0!

CHANGELOG

v1.0.3

  • Eleventy peer dependency corrected

v1.0.2

  • Chaining ancestors

v1.0.1

  • permalink:false && eleventyExcludeFromCollections: true are now possible
  • Eleventy now peerDependency

v0.5.0

  • ...

About

A plugin for creating a real hierarchical navigation, following folders and documents, in Eleventy projects.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published