A few Liquid templates to use for rendering JSON feeds for your Jekyll blog in keeping with the JSONFeed spec. Like it's sister project jekyll-rss-feeds, it features a number of kinds of feeds:
link
variable in the YAML Front Matter. Not a common Jekyll convention, but a good way to generating a linked list.feed.links.json
feed.json
) files to the root directory of your Jekyll blog.jekyll
.In your generated _site
folder you should find a properly formatted feed at feed.json
.
These templates rely on a customized version of _config.yml
. The following lines have been added:
name: Your Blog's Name
description: A description for your blog
url: http://your-blog-url.example.com
author: Your Name (optional)
This makes it easy to reference the title, description and URL for your site in the feed templates using {{ site.name }}
, {{ site.description }}
and {{ site.url }}
. Even if you're not using these feed templates, you might find these variables useful when you're designing your layouts.
If you missed the link at the top please also checkout the original incarnation of this project: