Web Feed Component Generated HTML


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.