mirror of
https://github.com/apache/httpd.git
synced 2026-01-06 09:01:14 +03:00
* XHTML 1._0_. delivering xhtml 1.1 as text/html is bogus. (see <http://www.w3.org/TR/xhtml-media-types/#summary>) * replaced the also bogus <dl> stuff by normal <p>s and added some CSS instead. (embedding CSS compatible to xml *and* html causes the very ugly hack, you can see in top.html, because in HTML <style> contains CDATA and in XHTML PCDATA, see also <http://lists.w3.org/Archives/Public/www-html/2002Apr/0053.html>) * fixed some encoding issues. * removed the weird empty lines at the beginning of every document * added CONTENT_LANGUAGE parameter for pt-br git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97665 13f79535-47bb-0310-9956-ffa450edef68
24 lines
952 B
HTML
24 lines
952 B
HTML
<!--#if expr="! $CONTENT_LANGUAGE"
|
|
--><!--#set var="CONTENT_LANGUAGE" value="en"
|
|
--><!--#endif
|
|
--><!--#if expr="! $CHARACTER_ENCODING"
|
|
--><!--#set var="CHARACTER_ENCODING" value="ISO-8859-1"
|
|
--><!--#endif
|
|
--><?xml version="1.0" encoding="<!--#echo var="CHARACTER_ENCODING" -->"?>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="<!--#echo var="CONTENT_LANGUAGE" -->" xml:lang="<!--#echo var="CONTENT_LANGUAGE" -->">
|
|
<head>
|
|
<title><!--#echo var="TITLE" --></title>
|
|
<link rev="made" href="mailto:<!--#echo encoding="url" var="SERVER_ADMIN" -->" />
|
|
<style type="text/css"><!--/*--><![CDATA[/*><!--*/
|
|
body { color: #000000; background-color: #FFFFFF; }
|
|
a:link { color: #0000CC; }
|
|
p, address {margin-left: 3em;}
|
|
span {font-size: smaller;}
|
|
/*]]>*/--></style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1><!--#echo encoding="none" var="TITLE" --></h1>
|
|
<p> |