diff options
author | Marius Halden <marius.h@lden.org> | 2015-02-14 17:22:36 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2015-02-14 17:22:36 +0100 |
commit | a6a6efcbdceb69ef4b70e88447901375aa30d093 (patch) | |
tree | ef6d9f2566d7f1edaa0a912241c420dd0773e5c4 /default.html | |
parent | 139bdcdf9718ae0e3bfd65fb8627b21e358e0f78 (diff) | |
download | sitesummary-a6a6efcbdceb69ef4b70e88447901375aa30d093.tar.gz sitesummary-a6a6efcbdceb69ef4b70e88447901375aa30d093.tar.bz2 sitesummary-a6a6efcbdceb69ef4b70e88447901375aa30d093.tar.xz |
Added basic support for templates for the web interfaceweb-template
Diffstat (limited to 'default.html')
-rw-r--r-- | default.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/default.html b/default.html new file mode 100644 index 0000000..fdc3b96 --- /dev/null +++ b/default.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<title>SiteSummary report</title> +</head> +<body> +<h1>SiteSummary report</h1> + +[% FOREACH key IN results.keys %] +<h2>[% key %]</h2> +<pre> +[% results.$key %] +</pre> +[% END %] + +<hr /> +<p><b>Last updated:</b> [% last_updated %]</p> + +</body> +</html> |