]> git.ozlabs.org Git - hiprofile/blobdiff - hiprofile/resources/base.html
Convert to a python package
[hiprofile] / hiprofile / resources / base.html
diff --git a/hiprofile/resources/base.html b/hiprofile/resources/base.html
new file mode 100644 (file)
index 0000000..63f2cd1
--- /dev/null
@@ -0,0 +1,22 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html>
+ <head>
+  <title>{% block title %}{% endblock %}</title>
+  <link rel="stylesheet" type="text/css" href="style.css"/>
+  <script type="text/javascript" src="hiprofile.js"></script>
+  <script type="text/javascript" src="jquery-1.3.1.min.js"></script>
+ </head>
+ <body>
+  <h1>{% block heading %}{% endblock %}</h1>
+  <div id="content">
+{% block content %}
+{% endblock %}
+  </div>
+  <div id="footer">
+   Report generated by <a href="http://ozlabs.org/~jk/projects/hiprofile/"
+   >hiprofile</a> version {{ version }}.
+  </div>
+ </body>
+</html>
+