Code: Select all
https://www.facebook.com/feeds/page.php?format=rss20&id=[FB_ID]
Code: Select all
https://www.facebook.com/feeds/page.php?format=atom10&id=[FB_ID]
Mijn sjabloon ziet er als volgt uit:
Code: Select all
{foreach from=$rss->items item='item'}
<div style="padding: 10px; background: rgba(255,255,255,{cycle values="0.3,0.2"});" class="newspost">
<h2 class="h2" style="display: inline;"><strong><a href="{$item.link}">{$item.title|truncate:60}</a> <small>- <time pubdate="{$item.pubdate|date_format:'%Y-%m-%d'}">{$item.pubdate|date_format:'%d-%m-%Y'}</time></small></h2></strong>
<p>{$item.description}</p>
</div>
{/foreach}