aboutsummaryrefslogtreecommitdiff
path: root/source/templates/base.html
blob: c6b33a82021a1a54883bd68f7dc78030df137ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
## base.html
<!DOCTYPE html>
<html>
<head>
    %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" type="text/css" href="/css/style.css" />
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <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</h1></a></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