Advertisement
alpa_s

Untitled

Jun 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this \yii\web\View */
  4. /* @var $content string */
  5.  
  6. \frontend\assets\FrontendAsset::register($this);
  7. echo microtime() . "<br>";
  8. ?>
  9. <?php $this->beginPage() ?>
  10. <!DOCTYPE html>
  11. <html lang="<?php echo Yii::$app->language ?>">
  12. <head>
  13. <meta charset="<?php echo Yii::$app->charset ?>"/>
  14.  
  15. <link href="<?= \common\components\MUrl::createFrontendUrl('/img/f.ico') ?>" type="image/x-icon">
  16. <link rel="shortcut icon" href="<?= \common\components\MUrl::createFrontendUrl('/img/f.ico') ?>" type="image/x-icon">
  17.  
  18. <meta name="viewport" content="width=device-width, initial-scale=1">
  19. <title><?php echo Html::encode($this->title) ?></title>
  20. <?php $this->head() ?>
  21. <?php echo Html::csrfMetaTags() ?>
  22. </head>
  23. <body>
  24. <?php $this->beginBody() ?>
  25. <?php echo $content ?>
  26. <?php $this->endBody() ?>
  27. </body>
  28. </html>
  29. <?php $this->endPage() ?>
  30. <?php echo microtime() . "<br>"; exit;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement