Web Feed Component Generated HTML: Difference between revisions
(New page: ====Feed component dynamically generated html (showing titles only):==== <source lang="html4strict"> <div class="component feed_component"> <h2><span>feed title</span></h2> <div class...) |
No edit summary |
||
Line 1: | Line 1: | ||
====Feed component dynamically generated html (showing titles only):==== | ====Feed component dynamically generated html (showing titles only):==== | ||
<br> | |||
<source lang="html4strict"> | <source lang="html4strict"> | ||
Line 15: | Line 17: | ||
</source> | </source> | ||
When a user adds a feed component to their Viviti site, this is the html that is dynamically generated. | When a user adds a feed component to their Viviti site, this is the html that is dynamically generated. | ||
<hr> | <hr> | ||
====Feed component dynamically generated html (showing full content):==== | |||
<br> | |||
<source lang="html4strict"> | <source lang="html4strict"> | ||
Line 40: | Line 44: | ||
</source> | </source> | ||
When a user adds a feed component to their Viviti site, this is the html that is dynamically generated. | When a user adds a 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 10:04, 2 April 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.