About this blog
A totally weird mix of posts on technology, advertising, social software, society, tango and women. Not necessarily in that order.
If you want to, you could even subscribe.
Recent Posts
- iPhone bandwidth: orders of magnitude
- Idea: preview service for URL shorteners
- Imagine: a virtual iPhone for everyone
- Wordle and famous movies
- Facebook tricked me into my own spam FAIL
- Seth’s bandwidth vs synchronicity graph: it’s a start
- My quest for “Let’s get lost” – Chet Baker by Bruce Weber
- Krantenkoppen op popnuuz.com
- AC adaptors: standardize, please
- Create your own iPhone ring tones
- Don’t send me a video, send me a link
- Five tips for taking tango pictures in dark environments
Recent Comments
- Bart Claeys on iPhone bandwidth: orders of magnitude
- Bart Claeys on Idea: preview service for URL shorteners
- Bart on Imagine: a virtual iPhone for everyone
- HAL on Lexmark printers with “Hardware Error 0502″
- Ian on Lexmark printers with “Hardware Error 0502″
- ana on my iPod Nano cannot be unlocked
- Hansi on There are no Flash websites
- Tim Magee on My quest for “Let’s get lost” – Chet Baker by Bruce Weber
Categories
Archives
Blogs BE
- 7seconden
- B.V.L.G.
- Babynox
- Baeyens
- Clopin
- Coolz0r
- Denis Balencourt
- Druppels
- Dykes And The City
- emich.be
- eskimokaka.be
- I-Manuel
- I-wisdom
- KleineKeizerin
- Lichtgeraakt
- LVB
- Mixtuur
- Monuments
- Mouseover
- Netlash
- Nijntje
- Nina
- Pascal Vanhecke
- Pietel
- Rik Boey
- Shoob
- Standaard
- Stuff to see
- Tenderfeelings
- TheseDays
- Vanhellemont
- Vanherreweghe
- Veerle
- Werner
Blogs US
Tags
1080p
audio
bandwidth
barcamp
barcampbrussels
Belgium
blog
blogger
bloggers
blogosphere
brussels
bulgaria
disk
dj
domains
droa
electronic
external
fake
flash
flickr
Google
hd
image
iphone
ipod
jpeg
meme
movie
mp3
music
netgear
pc
photography
RSS
scam
Search
stokje
storage
Tango
twitter
USB
visualisation
Wordpress
youtube
Recent posts + comments in Blogger
One of the disadvantages of using Blogger is that by default, you don’t have categories and recent comments on your blog. There is a trick to put recent comments on this Blogger help page. It involves introducing a new
<Blogger> ... </Blogger>loop in the blog template. A nice trick, but I don’t like the fact that they only show the comment dates.So I developed the idea a bit further: on the main and archive pages of my blog, you now see the normal “Recent Posts” in the sidebar, but the posts that have comments also have those listed (see image at the right). On the individual post pages, I have the normal list of recent posts. I put each comment in a
divwith a height of 25 pixels and withoverflow: auto(defined in the CSS file) so that long comments don’t take too much space. The layout of the thing (e.g. each comment starts with a clickable “>”) is easy to adapt.This is the Blogger template code (in the standard templates, put this instead of the existing code that is much like the part here between the
<ItemPage> ... </ItemPage>tags). Feel free to use it if you want to.<ItemPage>
<h2 class="sidebar-title">Previous posts</h2>
<ul id="recently">
<BloggerPreviousItems>
<li><a href="<$BlogItemPermalinkURL$>" mce_href="<$BlogItemPermalinkURL$>"><$BlogPreviousItemTitle$></a></li>
</BloggerPreviousItems>
</ul>
</ItemPage>
<MainOrArchivePage>
<h2 class="sidebar-title">Previous posts</h2>
<ul>
<Blogger>
<li><a href="<$BlogItemPermalinkURL$>" mce_href="<$BlogItemPermalinkURL$>"><$BlogItemTitle$></a>
<BlogItemCommentsEnabled>
<BlogItemComments>
<div class="recent_comment">
<a href="<$BlogCommentPermalinkURL$>" mce_href="<$BlogCommentPermalinkURL$>">></a> <$BlogCommentBody$>
</div>
</BlogItemComments>
</BlogItemCommentsEnabled>
</li>
</Blogger>
</ul>
</MainOrArchivePage>
You will need a CSS class (in your CSS file, or in the first part of your Blogger template) with something like the following code:
.recent_comment { overflow: auto; border-bottom: 1px #999 dashed; font-size: .8em; height: 25px; }