Skip to content

Commit

Permalink
Change metas for about and contact page #108
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuNls committed Jan 29, 2016
1 parent 74aec1e commit e850135
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion application/controllers/Home.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ function signupEmail() {
function about() {
$this->_headerData['headerClass'] = 'blue';
$this->_headerData['title'] = 'About Toolwatch';
$this->_headerData['meta_description'] = 'Toolwatch is where
watch aficionados measure the accuracy and precision of their watch.
More than 5000 people use Toolwatch to take care of their watch.';
$this->load->view('header', $this->_headerData);
$this->load->view('about');
$this->load->view('footer');
Expand All @@ -108,8 +111,12 @@ function about() {
function contact() {
$this->_headerData['headerClass'] = 'blue';
$this->_headerData['title'] = 'Contact';
$this->_headerData['meta_description'] = 'Contact the Toolwatch
Team. We are here to answer questions about watch accuracy,
precision, maintenance for watches and lots of other
interesting topics.';
$this->load->view('header', $this->_headerData);
$this->load->view('contact');
$this->load->view('footer');
}
}
}

0 comments on commit e850135

Please sign in to comment.