From e96ea7f073c9843f7aa6b842ee373aafb698ebeb Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Tue, 3 Mar 2009 17:56:22 +0100 Subject: Comments: * Check if entries/title.comments exists and switch from 'no comments' to 'comments (count) * Changed font of commentlink to Helvetica 10 --- blogthon.cgi | 13 +++++++++---- styles/blogthon.css | 4 ++-- 2 files changed, 11 insertions(+), 6 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() + '
' if comments == "True": - print '
' - print ' ' - print '

' - + if not glob.glob(entries_dir + title + '.comments'): + print '
' + print ' ' + print '

' + else: + print '
' + print ' ' + print '

' + print '

' print '

' content.close() diff --git a/styles/blogthon.css b/styles/blogthon.css index 3808f1a..280536a 100644 --- a/styles/blogthon.css +++ b/styles/blogthon.css @@ -73,8 +73,8 @@ a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active } a.comment:link, a.comment:hover, a.comment:active, a.comment:visited { - font-family: Arial; - font-size: 8px; + font-family: Helvetica; + font-size: 10px; } # vim: set tw=0 ts=4: -- cgit v1.2.3