aboutsummaryrefslogtreecommitdiff
path: root/source/templates/base.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-09-14 10:44:59 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-09-14 10:44:59 +0200
commit79dfa104623d51b7e0bdb411eadceda1747d0a20 (patch)
tree1542f86ee36a5606af0e9df70fea4e9f44b2060f /source/templates/base.html
parentThe logo of the feed has been added to the feed management page (/feed). (diff)
downloadnewspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.tar.gz
newspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.tar.bz2
newspipe-79dfa104623d51b7e0bdb411eadceda1747d0a20.zip
Templates has been removed to the upper folder.
Diffstat (limited to 'source/templates/base.html')
-rw-r--r--source/templates/base.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/source/templates/base.html b/source/templates/base.html
new file mode 100644
index 00000000..03c40f90
--- /dev/null
+++ b/source/templates/base.html
@@ -0,0 +1,28 @@
+## base.html
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8" />
+ %if header_text is UNDEFINED:
+ <title>pyAggr3g470r</title>
+ %elif header_text == 0:
+ <title>pyAggr3g470r</title>
+ %else:
+ <title>${header_text} - pyAggr3g470r</title>
+ %endif
+ <link rel="stylesheet" href="/static/css/style.css" />
+ <script src="https://apis.google.com/js/plusone.js"></script>
+</head>
+<body>
+ <div class="right innerlogo">
+ <a href="/"><img src="/static/img/tuxrss.png" title="What's new today?" /></a>
+ </div>
+ <a href="/"><h1 id="top">pyAggr3g470r</h1></a>
+ ${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.<br />
+ <a href="https://bitbucket.org/cedricbonhomme/pyaggr3g470r/" rel="noreferrer" target="_blank">Source code</a> of pyAggr3g470r.</p>
+ </div>
+</body>
+</html>
bgstack15