aboutsummaryrefslogtreecommitdiff
path: root/source/templates/base.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-11-26 08:13:33 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-11-26 08:13:33 +0100
commit8c27b2adc8060680aff32b40b98f9792256f6c87 (patch)
tree84900956b12d9e325dbfe20844458a0d5c0efa95 /source/templates/base.html
parentMinor changes. (diff)
downloadnewspipe-8c27b2adc8060680aff32b40b98f9792256f6c87.tar.gz
newspipe-8c27b2adc8060680aff32b40b98f9792256f6c87.tar.bz2
newspipe-8c27b2adc8060680aff32b40b98f9792256f6c87.zip
Refactoring codes in templates.
Diffstat (limited to 'source/templates/base.html')
-rw-r--r--source/templates/base.html17
1 files changed, 11 insertions, 6 deletions
diff --git a/source/templates/base.html b/source/templates/base.html
index 899bbce3..6380bf37 100644
--- a/source/templates/base.html
+++ b/source/templates/base.html
@@ -8,13 +8,18 @@
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
</head>
<body>
+ <div class="right innerlogo">
+ <a href="/"><img src="/img/tuxrss.png" title="What's new today?"/></a>
+ </div>
+ <a name="top"><a href="/"><h1>pyAggr3g470r - News aggregator</h1></a></a>
+ <a href="https://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">pyAggr3g470r (source code)</a>
-${self.body()}
+ ${self.body()}
-<hr />
-<p>This software is under GPLv3 license. You are welcome to copy, modify or
-redistribute the source code according to the
-<a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p>
-</div>
+ <hr />
+ <p>This software is under GPLv3 license. You are welcome to copy, modify or
+ redistribute the source code according to the
+ <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GPLv3</a> license.</p>
+ </div>
</body>
</html> \ No newline at end of file
bgstack15