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 37
|
<?xml version="1.0"?>
<!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>
<title>mixed content test</title>
</head>
<body>
<h1>Mixed Content Test</h1>
<p>
This file should be served with
a content type of 'text/html'.
</p>
<p>
A 304 should be returned on subsequent requests,
until you touch the file.
</p>
<p>
A content type for 'text/xml' should be returned for
<a href="test.xml">this file</a>.
</p>
<p>
For a test of using Python builtin string substitution try
<a href="sub.html">this file</a>.
</p>
<p>
For a test of using Kid templates
<a href="kid.html">this file</a>.
(Requires <a href="http://kid-templating.org/">Kid</a>)
</p>
<p>
For a test of using genshi templates
<a href="test.html">this file</a>.
</p>
</body>
</html>
|