aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-07-02 15:09:34 +0200
committercedricbonhomme <devnull@localhost>2010-07-02 15:09:34 +0200
commit674289f2282b87f4b9f275e0c219b491c4d78551 (patch)
tree28dc93df073d27f3708c4d78665a171d0b4463a1
parentThe size of article's titles on the main page is limited to 150 caracters. (diff)
downloadnewspipe-674289f2282b87f4b9f275e0c219b491c4d78551.tar.gz
newspipe-674289f2282b87f4b9f275e0c219b491c4d78551.tar.bz2
newspipe-674289f2282b87f4b9f275e0c219b491c4d78551.zip
Added logo.
-rw-r--r--css/img/tuxrss.pngbin0 -> 21798 bytes
-rwxr-xr-xcss/style.css6
-rwxr-xr-xpyAggr3g470r.py5
3 files changed, 10 insertions, 1 deletions
diff --git a/css/img/tuxrss.png b/css/img/tuxrss.png
new file mode 100644
index 00000000..b432050c
--- /dev/null
+++ b/css/img/tuxrss.png
Binary files differ
diff --git a/css/style.css b/css/style.css
index 0de4ca0e..c4316437 100755
--- a/css/style.css
+++ b/css/style.css
@@ -253,6 +253,12 @@ blockquote.right {
clear: both;
}
+.innerlogo {
+ margin-top: 0em;
+ padding: 0em 2em 0em 2em;
+ clear: both;
+}
+
.left {
float: left;
position: absolute;
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index abd6c11d..4f88da4c 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -27,6 +27,8 @@ path = {'/css/style.css': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'css/style.css'}, \
'/css/img/feed-icon-28x28.png': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'css/img/feed-icon-28x28.png'}, \
+ '/css/img/tuxrss.png': {'tools.staticfile.on': True, \
+ 'tools.staticfile.filename':utils.path+'css/img/tuxrss.png'}, \
'/css/img/delicious.png': {'tools.staticfile.on': True, \
'tools.staticfile.filename':utils.path+'css/img/delicious.png'}, \
'/css/img/digg.png': {'tools.staticfile.on': True, \
@@ -60,7 +62,8 @@ htmlfooter = '<p>This software is under GPLv3 license. You are welcome to copy,
' <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p></div>\n' + \
'</body>\n</html>'
-htmlnav = '<body>\n<h1><a name="top"><a href="/">pyAggr3g470r - RSS Feed Reader</a></a></h1>\n<a' + \
+htmlnav = '<body>\n<h1><div class="right innerlogo"><img src="/css/img/tuxrss.png" />' + \
+ '</div><a name="top"><a href="/">pyAggr3g470r - RSS Feed Reader</a></a></h1>\n<a' + \
' href="http://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">' + \
'pyAggr3g470r (source code)</a>'
bgstack15