I am struggling to get a Typo3 website working using Fluid templates instead of TV. I used modernpackage to create an extension for my template. However, when the site is rendered (without changing anything to the template) the css and js are loaded twice but one of them returns a 404.
When I look in the code I see that the head tag is renderend correctly, but the body tag is rendered like this:
<body class="page-1 template-">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TYPO3 Sitestarter Start</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/mediaqueries.css" rel="stylesheet">
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="css/responsiveTable.css" rel="stylesheet" type="text/css" media="screen"/>
<link href="css/yoxview.css" rel="stylesheet">
<link rel="shortcut icon" href="img/favicon.png">
<script src="js/modernizer-2.6.2.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://sitename/typo3/sysext/t3skin/stylesheets/standalone/admin_panel.css" /> </head>
<body>
...
It looks like the whole template is rendered in the body. Why is this happening and how can I prevent this from happening?