Web Feed Component Generated HTML: Difference between revisions
No edit summary |
mNo edit summary |
||
Line 19: | Line 19: | ||
When a user adds a | When a user adds a [[Feed | Feed component]] to their Viviti site, this is the html that is dynamically generated. | ||
Line 46: | Line 46: | ||
When a user adds a | When a user adds a [[Feed | Feed component]] to their Viviti site, this is the html that is dynamically generated. | ||
[[Category:Dynamically Generated HTML]] | [[Category:Dynamically Generated HTML]] |
Revision as of 17:08, 18 May 2009
Feed component dynamically generated html (showing titles only):
<div class="component feed_component">
<h2><span>feed title</span></h2>
<div class="component_content">
<h3>feed name</h3>
<ul>
<li>
<a href="">feed item title</a>
</li>
</ul>
</div>
</div>
When a user adds a Feed component to their Viviti site, this is the html that is dynamically generated.
Feed component dynamically generated html (showing full content):
<div class="component feed_component">
<h2>Feed Component Title</h2>
<div class="component_content">
<h3>Feed Title</h3>
<div class="feed_entry">
<h3 class="title">
<a href="">Entry Title Goes Here
</h3>
<div class="content">
Entry Content Goes Here
</div>
</div>
</div>
</div>
When a user adds a Feed component to their Viviti site, this is the html that is dynamically generated.