Skip to content

john-cheesman/pico-rss-content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Pico RSS Content

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.

Installation

  1. Download the files and move to plugins/rss-content
  2. Add the feed URL to config.php
  3. Setup a loop in your template

Examples

Feed URL

    $config['rss_feed'] = 'http://myfeed.com';

Template loop

    {% for item in rss_content %}
        <h2><a href="{{ item.link }}">{{ item.title }}</a></h2>
        <time>{{ item.date }}</time>
        <p>{{ item.description }}</p>
    {% endfor %}

Properties

  • title
  • link
  • date (formatted by $config['date_format'])
  • description

Changelog

  • v1.0.3 - fixed readme
  • v1.0.2 - updated readme
  • v1.0.1 - added MIT license
  • v1.0.0 - initial release

About

A Pico plugin for importing rss feed content

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages