All entries tagged with bloggers
Welcome Back David Jones
Chris Whisonant
After nearly 2 years (bad David!) of not blogging, I would like to welcome back David Jones with his BleedYellow blog! David's a developer/admin and works with System i servers too - not a bad chap!
Adding a link to your Comments Feed on BleedYellow blogs
Chris Whisonant
I have been thinking of this and decided to actually look into it when Phil asked me about a comments feed today. In all of the documentation, I couldn't find out what the link for the comments feeds are. The first thing I tried was modifying the Entries feed link from this:
http://bleedyellow.com/blogs/roller-ui/rendering/feed/BLOGNAME/entries/atom/
to this:
http://bleedyellow.com/blogs/roller-ui/rendering/feed/BLOGNAME/comments/atom/
and it works just fine. So the next step I did was modify my template to include the comments link beside the entries link.
In order to do this, you will need to do the following:
- Edit My Blog
- Preferences
- Templates
- Click the link to Edit the Weblog template
- Find the following: <div class="header">
- Between the first #if, I now have the following:
#if (!$model.searchResults)
<a href='$url.site/roller-ui/rendering/feed/$model.weblog.handle/entries/atom/' title="$text.get('ventura.feed')" #if($utils.isIE6())onclick='showFeedTip()'#end><img src='$url.site/roller-ui/images/feed.gif' border="0" alt="Entries" title="Entries" /></a>
<a href='$url.site/roller-ui/rendering/feed/$model.weblog.handle/comments/atom/' title="$text.get('ventura.feed')" #if($utils.isIE6())onclick='showFeedTip()'#end><img src='$url.site/roller-ui/images/feed.gif' border="0" alt="Comments" title="Comments" /></a>
#else - Save the template

