You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Essa função deve ser utilizada nos controllers para exibir uma página existente em `application/views/pages/` com seus respectivos módulos de css/js.
508
+
509
+
Exemplo
510
+
511
+
```php
512
+
class Home extends MY_Controller {
513
+
514
+
public function __construct() {
515
+
parent::__construct();
516
+
}
517
+
518
+
public function index(){
519
+
$this->template->set_title("Página inicial"); // Seta o titulo da pagina
520
+
$this->template->render('master', 'home'); // Carrega a view /views/pages/home.php dentro do layout views/master.php
0 commit comments