All Projects → georgemandis → jekyll-rss-feeds

georgemandis / jekyll-rss-feeds

Licence: MIT license
Templates for rendering RSS feeds for your Jekyll blog

Projects that are alternatives of or similar to jekyll-rss-feeds

Jekyll Rss Feeds
Templates for rendering RSS feeds for your Jekyll blog
Stars: ✭ 627 (-1.88%)
Mutual labels:  liquid, feed, jekyll-blog
zhangkn.github.io
新博客地址:https://kunnan.blog.csdn.net
Stars: ✭ 20 (-96.87%)
Mutual labels:  liquid, feed
Concrete
🏗 Concrete Shopify Theme Framework
Stars: ✭ 124 (-80.59%)
Mutual labels:  liquid
biketag-website
A website for biketag.org
Stars: ✭ 34 (-94.68%)
Mutual labels:  liquid
Liquid Rust
Liquid templating for Rust
Stars: ✭ 229 (-64.16%)
Mutual labels:  liquid
Shopify Modern
A modern template for developing Shopify-themes using Vuejs
Stars: ✭ 136 (-78.72%)
Mutual labels:  liquid
Crypto Exchange
Pulls together list of crypto exchanges to interact with their API's in a uniform fashion.
Stars: ✭ 241 (-62.28%)
Mutual labels:  liquid
Vc Storefront
VirtoCommerce Storefront for ASP.NET Core 3.1 repository
Stars: ✭ 122 (-80.91%)
Mutual labels:  liquid
osmosfeed
Turn GitHub into an RSS reader
Stars: ✭ 839 (+31.3%)
Mutual labels:  feed
Init.nvim
An Opinionated Neovim Config for the Minimalists
Stars: ✭ 194 (-69.64%)
Mutual labels:  liquid
scalem
A jQuery plugin to make any element scalable (responsive).
Stars: ✭ 33 (-94.84%)
Mutual labels:  liquid
Bootstrapify 1
An open-source base theme for Shopify using Twitter Bootstrap
Stars: ✭ 189 (-70.42%)
Mutual labels:  liquid
Moonmail
Email marketing platform for bulk emailing via Amazon SES (Google Cloud Platform and Azure coming soon)
Stars: ✭ 1,766 (+176.37%)
Mutual labels:  liquid
liquid
A Python engine for the Liquid template language.
Stars: ✭ 40 (-93.74%)
Mutual labels:  liquid
Jekyll Timeago
⌛️ Ruby library to compute distance of dates in words. Originally built for Jekyll.
Stars: ✭ 130 (-79.66%)
Mutual labels:  liquid
cakephp-feed
CakePHP Plugin with RssView to create RSS feeds.
Stars: ✭ 13 (-97.97%)
Mutual labels:  feed
Fhir Converter
Conversion utility to translate legacy data formats into FHIR
Stars: ✭ 123 (-80.75%)
Mutual labels:  liquid
Smartstorenet
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 2,363 (+269.8%)
Mutual labels:  liquid
Libwethair
A Multi-Scale Model for Simulating Liquid-Hair Interactions
Stars: ✭ 232 (-63.69%)
Mutual labels:  liquid
web-front-end-rss
📙 根据 RSS 抓取最新前端技术文章,来源:前端早读课、前端大全、前端之巅、淘宝前端、张鑫旭博客、凹凸实验室等
Stars: ✭ 24 (-96.24%)
Mutual labels:  feed

Jekyll RSS Feed Templates

NOTE: If you're a fan of this project you should checkout the sister project: jekyll-json-feeds.

A few Liquid templates to use for rendering RSS feeds for your Jekyll blog. Featuring four kinds of feeds:

  • feed.xml — Renders the 10 most recent posts.
  • feed.category.xml — Only renders posts for a specific category. This example renders posts for a "miscellaneous" category.
  • feed.links.xml — Only contains posts that link to external websites noted by a link variable in the YAML Front Matter. Not a common Jekyll convention, but a good way to generating a linked list.
  • feed.articles.xml — Only showing articles that don't link to external sites; The opposite of feed.links.xml

How to use

  • Update _config.yml as noted below, or manually replace the variables.
  • Copy one of the xml (ie, feed.xml) files to the root directory of your Jekyll blog.
  • Run jekyll.

In your generated _site folder you should find a properly formatted feed at feed.xml.

Customizing _config.yml

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
feed_items: 10
feed_update_period: daily
feed_update_frequency: 1

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.

The feed_* items shown above are the default. You can safely omit them.

Miscellany

  • Note on YAML Front Matter block: The xml files contain an empty YAML Front Matter block. This is necessary because Jekyll will not process a page with Liquid unless there is a YAML block at the top of the file.

  • Note on layouts: Previously, this block contained the line layout: none but that was found to cause a separate issue for some: https://github.com/snaptortoise/jekyll-rss-feeds/commit/209b83b504fde14722491ea5d9753189566c8598. However, if you've specified a default layout in your _config.yml file then you will most likely want to specify layout: none for your RSS feeds. Otherwise they will render in the default layout which is likely to be an HTML page. See this issue for reference: #32

  • RSS Autodiscovery: If your template is not already setup to do so, make sure the RSS feeds are discoverable by browsers, bots, etc. by providing proper link tags to your Jekyll layout files (adapt href and title appropriately):

      <link href="https://github.com/blog/feed.xml" type="application/rss+xml" rel="alternate" title="Latest 10 blog posts (atom)" />
    

    Refer to rssboard.org/rss-autodiscovery for details.

  • Validation: You can use the W3C Validator to make sure your feeds are formatted correctly: http://validator.w3.org/feed/

  • If you're a Pinboard user and found this repo useful, take a look at jekyll-pinboard. It allows you to load your Pinboard bookmarks into your Jekyll site with just a couple lines.

  • If you're looking for JSON feed templates to add to your Jekyll blog please checkout the sister project: jekyll-json-feeds.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].