[eluser]Unknown[/eluser]
I have everything set up correctly with the Dwoo parser and I've changed my template layout config to index and the template theme config to admin so it should be /application/themes/admin/index.php. It's loading the test views but it's giving me an error.
Quote:Unable to load the requested file: index.php
The only code I have is
Code:
public function index()
{
$this->template->title('Elabra')->build('welcome_message');
}
My themes/admin/index.php file contains
Code:
<!DOCTYPE html>
<html>
<head>
<title>{$template.title}</title>
{$template.metadata}
</head>
<body>
<h1>{$template.title}</h1>
{$template.body}
</body>
</html>