16 lines
409 B
PHP
16 lines
409 B
PHP
<?php
|
|
class Pages extends CI_Controller {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->template->set_template('admin');
|
|
|
|
}
|
|
public function index() {
|
|
//$this->load->view('admin/pages/index');
|
|
$this->template->write('title', 'aaaaaaa');
|
|
$this->template->write_view('content', 'admin/pages/index');
|
|
$this->template->render();
|
|
}
|
|
|
|
}
|