Hallo,
ich beschäftige mich seit ca. 2 Wochen mit Typo3 (4.1) und habe mir gestern Typo3 4.1.1 aufgesetzt local (Windows).
Jetzt habe ich mal das Tutorial (doc_tv_de) durchgespielt und dabei ist mir aufgefallen, nach dem ich durch war das der Header der ja von Typo3 erzeugt wird nicht W3C gerecht ist.
Wie und wo kann ich den Header anpassen, damit er dieses Ordnungsgemäß ausgibt?
Der orig. Header sieht so aus.
Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!--
This website is powered by TYPO3 - inspiring people to share!
TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL.
TYPO3 is copyright 1998-2006 of Kasper Skaarhoj. Extensions are copyright of their respective owners.
Information and contribution at http://typo3.com/ and http://typo3.org/
-->
<link rel="stylesheet" type="text/css" href="typo3temp/stylesheet_e99aac0be0.css" />
<title>RootElement</title>
<meta name="generator" content="TYPO3 4.1 CMS" />
<script type="text/javascript" src="typo3temp/javascript_757c080409.js"></script>
<link rel="SHORTCUT ICON" href="fileadmin/templates/gfx/fav.ico" />
<style type="text/css" media="all">
@import url(fileadmin/templates/style.css);
</style>
</head>
<body>
Der gecleante Header sollte dann so aussehen.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--
This website is powered by TYPO3 - inspiring people to share!
TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL.
TYPO3 is copyright 1998-2006 of Kasper Skaarhoj. Extensions are copyright of their respective owners.
Information and contribution at http://typo3.com/ and http://typo3.org/
-->
<link rel="stylesheet" type="text/css" href=
"typo3temp/stylesheet_e99aac0be0.css">
<title>RootElement</title>
<meta name="generator" content="TYPO3 4.1 CMS">
<script type="text/javascript" src=
"typo3temp/javascript_757c080409.js">
</script>
<link rel="SHORTCUT ICON" href="fileadmin/templates/gfx/fav.ico">
<style type="text/css" media="all">
@import url(fileadmin/templates/style.css);
</style>
</head>
<body>
Danke