error.php 1000 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. ?>
  10. <?php
  11. /* @var $this yii\web\View */
  12. /* @var $name string */
  13. /* @var $message string */
  14. /* @var $exception Exception */
  15. use yii\helpers\Html;
  16. $this->title = $name;
  17. ?>
  18. <div class="main container one-column">
  19. <div class="col-main">
  20. <div class="content-404 text-center">
  21. <img class="image404" src="<?= Yii::$service->image->getImgUrl('images/404.png','apphtml5') ?>" class="img-responsive" alt="" />
  22. <h1><b><?= Yii::$service->page->translate->__('OPPS!'); ?></b> <?= Yii::$service->page->translate->__('We Couldn’t Find this Page'); ?></h1>
  23. <p><?= Yii::$service->page->translate->__('Please contact us if you think this is a server error, Thank you.'); ?></p>
  24. <h2><a href="<?= Yii::$service->url->homeUrl(); ?>"><?= Yii::$service->page->translate->__('Bring me back Home'); ?></a></h2>
  25. </div>
  26. </div>
  27. </div>