Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
an11ty-template
Advanced tools
Default an11ty site and configuration, with all sorts of goodies.
This is the default template used by An11ty.
The behaviour of an11ty
is to overwrite template files with your files, instead of merging them. This default site has a lot of functionality packed in, and you can extend it in many ways without needing to overwrite files.
.eleventy.js
Instead of rewriting the .eleventy.js
configuration file, name your file .an11ty.js
and it will be run like the normal 11ty configuration file, after the base one is run. (If you need it to run before, name it .an11ty-before.js
instead. Or do both.)
Example of adding a single filter:
// .an11ty.js (in your site's folder)
module.exports = function (eleventyConfig) {
eleventyConfig.addFilter('uppercase', (string) => {
return string.toUpperCase();
});
};
If you return a configuration object, for example to change the returned templateFormats
list, your object will be merged with the default ones using a non-recursive Object.assign
.
This means to add a new template format, since it's an array, you would need to return the full updated array.
Example of only changing the HTML template engine:
// .an11ty.js (in your site's folder)
module.exports = function () {
return {
htmlTemplateEngine: 'pug'
};
};
image resizing stuff? https://github.com/image-size/image-size
A starter repository showing how to build a blog with the Eleventy static site generator.
These builders are amazing—try them out to get your own Eleventy site in a few clicks!
git clone https://github.com/11ty/eleventy-base-blog.git my-blog-name
cd my-blog-name
Specifically have a look at .eleventy.js
to see if you want to configure any Eleventy options differently.
npm install
npx eleventy
Or build and host locally for local development
npx eleventy --serve
Or build automatically when a template changes:
npx eleventy --watch
Or in debug mode:
DEBUG=* npx eleventy
about/index.md
shows how to add a content page.posts/
has the blog posts but really they can live in any directory. They need only the post
tag to be added to this collection.nav
tag to add a template to the top level site navigation. For example, this is in use on index.njk
and about/index.md
..eleventy.js
-> templateFormats
.
css
and png
are listed in templateFormats
but are not supported template types, any files with these extensions will be copied without modification to the output (while keeping the same directory structure).feed/feed.njk
. This is also a good example of using a global data files in that it uses _data/metadata.json
._includes/layouts/base.njk
: the top level HTML structure_includes/layouts/home.njk
: the home page template (wrapped into base.njk
)_includes/layouts/post.njk
: the blog post template (wrapped into base.njk
)_includes/postlist.njk
is a Nunjucks include and is a reusable component used to display a list of all the posts. index.njk
has an example of how to use it.Highly inspired by https://github.com/hankchizljaw/hylia
FAQs
Default an11ty site and configuration, with all sorts of goodies.
The npm package an11ty-template receives a total of 3 weekly downloads. As such, an11ty-template popularity was classified as not popular.
We found that an11ty-template demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.