blob: c472c193fe1c1df072d4a6da68ce9802eedce22d (
plain) (
tree)
|
|
Plugin to read RSS streams in Jekyll
====================================
Copy the file `rss.rb` to the `_plugin` directory of your blog. If there's no
plugin directory, you may have to create it.
Add a file called feeds.yml to your `_data` directory, it should look similar to
this:
my_feed:
title: My Feed
url: http://example.com/feed
limit: 20
Then use like this from any liquid template:
{% rss my_feed %}
This fetches the 20 latest posts from the feed identified by `my_feed`, and
inserts it into your template.
License:
--------
Copyright (C) 2015 Harald Eilertsen
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
|