error.php 940 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2017-03-15 21:16
  7. */
  8. /* @var $this yii\web\View */
  9. /* @var $name string */
  10. /* @var $message string */
  11. /* @var $exception Exception */
  12. use yii\helpers\Html;
  13. $this->title = $name;
  14. ?>
  15. <div class="content-wrap">
  16. <div style="text-align:center;padding:10px 0;font-size:16px;background-color:#ffffff;height: 460px">
  17. <h2 style="font-size:36px;margin-bottom:10px;"><?= Html::encode($this->title) ?></h2>
  18. <p align="center"><?= nl2br(Html::encode($message)) ?></p>
  19. <div style="margin-top: 20px">
  20. <p>
  21. <?= Yii::t('frontend', 'The above error occurred while the Web server was processing your request.') ?>
  22. </p>
  23. <p>
  24. <?= Yii::t('frontend', 'Please contact us if you think this is a server error. Thank you.') ?>
  25. </p>
  26. </div>
  27. </div>
  28. </div>