first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
class About extends WRB_Controller {
|
||||
|
||||
public function index() {
|
||||
|
||||
$data['title'] = "About"; // Capitalize the first letter
|
||||
$data['page_title'] = "About WrenchBoard";
|
||||
|
||||
$data['page_key'] = 'WRB_MAIN_ABOUT_US';
|
||||
$data['txt_detail'] = $this->readFixedText($data['page_key']);
|
||||
|
||||
|
||||
$this->load->view('templates/header_boxed', $data);
|
||||
$this->load->view('users/view_about', $data);
|
||||
$this->load->view('users/view_external_footer');
|
||||
// $this->load->view('templates/footer_boxed', $data);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user