summaryrefslogtreecommitdiffstats
path: root/venv/lib/python3.9/site-packages/pympler/templates/header.tpl
blob: 34ee1761a19f7265db1586fb5fa1adabfe2a7f03 (plain) (blame)
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
29
30
31
32
33
34
35
36
<html>

<head>
    <title>Pympler - {{title}}</title>
    <link rel="stylesheet" type="text/css" href="/static/style.css">
    <script src="http://code.jquery.com/jquery-1.10.1.min.js" type="text/javascript"></script>
</head>

%navbar = [
%    ("overview", "/", ""),
%    ("|", "", ""),
%    ("process", "/process", ""), 
%    ("|", "", ""),
%    ("tracked objects", "/tracker", ""),
%    ("|", "", ""),
%    ("garbage", "/garbage", ""),
%    ("help", "/help", "right"),]

<body>
<div class="related">
    <ul>
        %for link, href, cls in navbar:
            <li class="{{cls}}">
                %if bool(href):
                    <a href="{{href}}"><span>{{link}}</span></a>
                %else:
                    <span>{{link}}</span>
                %end
            </li>
        %end
    </ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">