HtmlController.class.php 863 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * lionfish 商城系统
  4. *
  5. * ==========================================================================
  6. * @link http://www.liofis.com/
  7. * @copyright Copyright (c) 2015 liofis.com.
  8. * @license http://www.liofis.com/license.html License
  9. * ==========================================================================
  10. *
  11. * @author fish
  12. *
  13. */
  14. namespace Home\Controller;
  15. class HtmlController extends CommonController {
  16. public function about(){
  17. $this->title='关于我们-';
  18. $this->meta_keywords=C('SITE_KEYWORDS');
  19. $this->meta_description=C('SITE_DESCRIPTION');
  20. $this->display();
  21. }
  22. public function contact(){
  23. $this->title='联系我们-';
  24. $this->meta_keywords=C('SITE_KEYWORDS');
  25. $this->meta_description=C('SITE_DESCRIPTION');
  26. $this->display();
  27. }
  28. }