This plugin allows you to embed content from an RSS feed on to your website using only data
attributes directly in the HTML.
Add the plugin to your page, just before the </body>
tag.
<script src="path/to/simple-rss.js"></script>
Create the container for the RSS feed to show in, and pass options in via data
attributes.
<div
data-rss-feed="http://binonabin.tumblr.com/rss"
data-rss-link-titles="false"
data-rss-title-wrapper="h3"
data-rss-max="5">
</div>
Specifies the RSS feed to pull content from
Specifies whether to link the titles to the original post.
default: true
Specifies the HTML element to wrap the titles.
default: h2
Specifies the number of entries to output
default: 10