Merge remote branch 'stof/default_template'

* stof/default_template:
  Use well-formed HTML in the default page
This commit is contained in:
Fabien Potencier 2011-02-19 18:51:49 +01:00
commit 678e2f65ad

View File

@ -1,5 +1,11 @@
<h1>Congratulations!</h1> <!DOCTYPE html>
<html>
<p> <head>
You have successfully created a new Symfony2 application. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</p> <title>Congratulations</title>
</head>
<body>
<h1>Congratulations!</h1>
<p>You have successfully created a new Symfony2 application.</p>
</body>
</html>