witten
/
luminotes
Archived
1
0
Fork 0

Added rss icon to blog subscribe link.

This commit is contained in:
Dan Helfman 2008-04-03 21:49:21 +00:00
parent 6fb7038229
commit 88d4f4dbfc
4 changed files with 14 additions and 1 deletions

3
NEWS
View File

@ -1,3 +1,6 @@
1.2.24: April ?, 2008
* Added rss icon to blog subscribe link.
1.2.23: April 2, 2008
* Now displaying a thumbnail in the file info box for uploaded image files.
* When you click on a link for an image file, a new window opens where you

View File

@ -650,3 +650,8 @@ img {
float: left;
cursor: pointer;
}
.rss_image {
vertical-align: middle;
border: 0;
}

BIN
static/images/rss.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -38,13 +38,18 @@ class Link_area( Div ):
class_ = u"link_area_item",
) or None,
( notebook.name == u"Luminotes blog" ) and Div (
( notebook.name == u"Luminotes blog" ) and Div(
A(
u"subscribe to rss",
href = u"%s?rss" % notebook_path,
id = u"rss link",
title = u"Subscribe to the RSS feed for the Luminotes blog.",
),
A(
Img( src = u"/static/images/rss.png", width = u"28", height = u"28", class_ = u"rss_image" ),
href = u"%s?rss" % notebook_path,
title = u"Subscribe to the RSS feed for the Luminotes blog.",
),
class_ = u"link_area_item",
) or None,