🧝in 1.9.2-alpha

Plugins

Elfin comes packaged with several plugins. To add (or remove) plugins, modify the 11ty/plugins/loader.js file.

Cloudinary

This is the @11in/cloudinary plugin. See its documentation for further details.

Eleventy Navigation

A handle plugin for managing and generating navigation menus. For detailed usage information, see its documentation.

Helmet

This can be very useful for conditionally modifying the <head>. The documentation provides a solid explanation, but usage looks like this:

<!-- some layout -->
<meta name="description" content="A description specific to this page!"
data-helmet />
<!-- output -->
<head>
<title>Site Title</title>
...
<meta name="description" content="A description sepcific to this page!">
...
</head>