first commit

This commit is contained in:
Olu Amey
2021-10-09 21:59:14 -04:00
commit 2e1a4017c3
6336 changed files with 864678 additions and 0 deletions
+20
View File
@@ -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);
}
}