diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-03-03 17:56:22 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-03-03 17:56:22 +0100 |
commit | e96ea7f073c9843f7aa6b842ee373aafb698ebeb (patch) | |
tree | 1012f70096320606de74cc5a51cff525e2247f07 /blogthon.cgi | |
parent | b964989fcef583532980956bb119782d3f95b64b (diff) |
Comments:
* Check if entries/title.comments exists and switch from 'no comments' to
'comments (count)
* Changed font of commentlink to Helvetica 10
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index dc34572..1962d77 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -140,10 +140,15 @@ else: # Show regular entry for line in content: print ' ' + line.strip() + '<br />' if comments == "True": - print ' <div class="comment">' - print ' <ul><li><a href=? class="comment">comments</a></li></ul>' - print ' </div><br />' - + if not glob.glob(entries_dir + title + '.comments'): + print ' <div class="comment">' + print ' <ul><li><a href=? class="comment">no comments</a></li></ul>' + print ' </div><br />' + else: + print ' <div class="comment">' + print ' <ul><li><a href=? class="comment">comments (count)</a></li></ul>' + print ' </div><br />' + print ' </p></div>' print ' <br /><br />' content.close() |