Web Feed Component Generated HTML: Difference between revisions


mNo edit summary
No edit summary
 
Line 19: Line 19:




When a user adds a [[Feed | Feed component]] to their Viviti site, this is the html that is dynamically generated.
When a user adds a [[Feed | Feed component]] to their site, this is the html that is dynamically generated.




Line 46: Line 46:




When a user adds a [[Feed | Feed component]] to their Viviti site, this is the html that is dynamically generated.
When a user adds a [[Feed | Feed component]] to their site, this is the html that is dynamically generated.


[[Category:Dynamically Generated HTML]]
[[Category:Dynamically Generated HTML]]

Latest revision as of 10:38, 12 October 2010

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 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 site, this is the html that is dynamically generated.