The theme does not validate at http://validator.w3.org/ - but it seems that just the wrong doctype has been used.
The fix:
In page.tpl.php i replaced the first lines:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
with this
<!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="<?php print $language ?>" xml:lang="<?php print $language ?>">
And now the page validates just fine. An working sample can be seen at http://oldrup.dk/ for now.
Bjarne
Comments
Comment #1
drupallinux commentednot so nifty now :) does not show round corners on the link you just gave hehe :)