Comments:

* Check if entries/title.comments exists and switch from 'no comments' to
  'comments (count)
* Changed font of commentlink to Helvetica 10
This commit is contained in:
Stefan Ritter 2009-03-03 17:56:22 +01:00
parent b964989fce
commit e96ea7f073
2 changed files with 11 additions and 6 deletions

View File

@ -140,8 +140,13 @@ else: # Show regular entry
for line in content:
print ' ' + line.strip() + '<br />'
if comments == "True":
if not glob.glob(entries_dir + title + '.comments'):
print ' <div class="comment">'
print ' <ul><li><a href=? class="comment">comments</a></li></ul>'
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>'

View File

@ -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: