blob: b355544cfa59961863b4cb31872bb16a4191cd63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[% PROCESS "suitedata.tmpl" %]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
[% IF official %]
<title>[% suites.$suite.title %]</title>
[% ELSE %]
<title>Unofficial [% suites.$suite.title %]</title>
[% END %]
<style type="text/css">
@import "http://www.w3.org/StyleSheets/TR/base.css";
@import "indices.css";
</style>
</head>
<body>
[% INCLUDE index.content.tmpl %]
</body>
</html>
|