v1.0.3
A simple RSS plugin for Pico, import content into any template.
Add rss-content to your plugins directory, set your feed and access the array in a template.
- Download the files and move to
plugins/rss-content
- Add the feed URL to
config.php
- Setup a loop in your template
$config['rss_feed'] = 'http://myfeed.com';
{% for item in rss_content %}
<h2><a href="{{ item.link }}">{{ item.title }}</a></h2>
<time>{{ item.date }}</time>
<p>{{ item.description }}</p>
{% endfor %}
- title
- link
- date (formatted by
$config['date_format']
) - description
- v1.0.3 - fixed readme
- v1.0.2 - updated readme
- v1.0.1 - added MIT license
- v1.0.0 - initial release