You can include an RSS Feed widget anywhere in the main content area of your page by including an empty div element with the id 'wdn_rss_widget':
and including the plugin initialization (which will include the "UNL In The News" RSS news feed):
Alternatively, you could load the RSS widget with your own RSS feed:
WDN.initializePlugin('rss_widget', 'http://newsroom.unl.edu/announce/cse?format=xml');
You can also customize a few things by providing a JavaScript object like this:
WDN.initializePlugin('rss_widget', { url: 'http://newsroom.unl.edu/announce/cse?format=xml',
pause: 8000,
limit: 10,
num_show: 3});
Where each attribute is as follows:
Further, you can stylize your rss widget with some colors by making it a zenbox and providing a specific subclass:
<div id="wdn_rss_widget" class="zenbox primary"></div>
Possible options for the subclasses: bright, cool, energetic, neutral, primary, soothing (see the zenbox documentation for the colors these themes correspond to).