I´ve been playing a little with the Google API, so if you have a Revit related website, and want some dynamic Revit related content which gets updated several times per day, you can add the Html code below to anywhere you like.
Here´s a live sample of what it looks like.
Look at it as a win-win! Your site gets updated with fresh content, and the Forum get´s some links and publicity in return
Here´s a live sample of what it looks like.
Look at it as a win-win! Your site gets updated with fresh content, and the Forum get´s some links and publicity in return

Code:
<!-- ++Begin Dynamic Feed Wizard Generated Code++ --> <!-- // Created with a Google AJAX Search and Feed Wizard // http://code.google.com/apis/ajaxsearch/wizards.html --> <!-- // The Following div element will end up holding the actual feed control. // You can place this anywhere on your page. --> <div id="feed-control"> <span style="color:#000000;width:300px;font-size:11px;margin:10px;padding:4px;">Loading...</span> </div> <!-- Google Ajax Api --> <script src="http://www.google.com/jsapi?key=notsupplied-wizard" type="text/javascript"></script> <!-- Dynamic Feed Control and Stylesheet --> <script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js" type="text/javascript"></script> <style type="text/css"> @import url("http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css"); </style> <script type="text/javascript"> function LoadDynamicFeedControl() { var feeds = [ {title: 'RevitForum.org - Recent Threads', url: 'http://revitforum.org/external.php?type=rss' },]; var options = { numResults : 10, displayTime : 3500, stacked : false, horizontal : false, title : "" } new GFdynamicFeedControl(feeds, 'feed-control', options); } // Load the feeds API and set the onload callback. google.load('feeds', '1'); google.setOnLoadCallback(LoadDynamicFeedControl); </script> <!-- ++End Dynamic Feed Control Wizard Generated Code++ -->
Comment