]> git.ozlabs.org Git - hiprofile/blob - share/hiprofile/base.html
Include package & version info in report footers
[hiprofile] / share / hiprofile / base.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html>
4  <head>
5   <title>{% block title %}{% endblock %}</title>
6   <link rel="stylesheet" type="text/css" href="style.css"/>
7   <script type="text/javascript" src="hiprofile.js"></script>
8   <script type="text/javascript" src="jquery-1.3.1.min.js"></script>
9  </head>
10  <body>
11   <h1>{% block heading %}{% endblock %}</h1>
12   <div id="content">
13 {% block content %}
14 {% endblock %}
15   </div>
16   <div id="footer">
17    Report generated by <a href="http://ozlabs.org/~jk/projects/hiprofile/"
18    >hiprofile</a> version {{ version }}.
19   </div>
20  </body>
21 </html>
22