Hello,
I've put all of the codeigniter-template files in the proper place, but layouts just...aren't loading.
Layout:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>{$template.title}</title>
</head>
<body>
{$template.body}
</body>
</html>
Controller:
template
->title('Groups Index')
->set_layout('default')
->build('groups/index');
}
```
}
/\* End of file index.php _/
/_ Location: ./application/controllers/groups.php */