Feed widget item list source
"'Peta Sella' via Blogger Developer Group" <[email protected]>
| Newsgroups | gmane.comp.web.blogger.api |
|---|---|
| Message-ID | <[email protected]> |
With the Feed widget you can show up to 5 feed posts on your blog website.
I'm trying to understand what happens in the template. I found this:
<b:widget id='Feed1' locked='false' title='*Recent Posts*' type='Feed'
visible='true'>
<b:includable id='main'>
<h2><data:title/></h2>
<div class='widget-content' expr:id='data:widget.instanceId +
"_feedItemListDisplay"'>
<span style='filter: alpha(25); opacity: 0.25;'>
*<a expr:href='data:feedUrl'><data:loadingMsg/></a>*
</span>
</div>
<b:include name='quickedit'/>
</b:includable>
</b:widget>
And this will be produced at runtime:
<div id="Feed1" data-version="1" class="widget Feed">
<h2>*Recent Posts*</h2>
<div id="Feed1_feedItemListDisplay" class="widget-content">
* <ul> <li><span class="item-title"><a href="xxxx"
target="_self">yyy</a></span></li>*
* <li><span class="item-title"><a href="xxxx"
target="_self">yyy</a></span></li>*
* <li><span class="item-title"><a href="xxxx"
target="_self">yyy</a></span></li>*
* <li><span class="item-title"><a href="xxxx"
target="_self">yyy</a></span></li>*
* <li><span class="item-title"><a href="xxxx"
target="_self">yyy</a></span></li>** </ul>*
</div>
...
</div>
Question: Where is the part which generates the link list (ul li a ...)?
--
You received this message because you are subscribed to the Google Groups "Blogger Developer Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/bloggerdev.
For more options, visit https://groups.google.com/d/optout.