За последние 24 часа нас посетили 218197 программистов и 2850 роботов. Сейчас ищут 1184 программиста ...

yii2 то что в шаьблоне bootstrap стили не применяются а с содержимым $content применяются

Тема в разделе "Yii", создана пользователем Norair_986, 22 окт 2025.

  1. Norair_986

    Norair_986 Новичок

    С нами с:
    3 фев 2025
    Сообщения:
    10
    Симпатии:
    0
    yii2 то что в шаблоне bootstrap стили не применяются а с содержимым $content применяются
    вот шаблон:
    PHP:
    1. <?php
    2. use app\assets\AppAsset;
    3. use yii\helpers\Html;
    4. AppAsset::register($this)
    5. должно быть [IMG]https://postimg.cc/PNKjjbpN[/IMG]
    6. есть [IMG]https://postimg.cc/XpTDSX8S[/IMG]
    7. ?>
    8. <?  $this->beginPage() ?>
    9. <!doctype html>
    10. <html lang="en">
    11. <head>
    12.     <meta charset="UTF-8">
    13.     <title>document</title>
    14.     <?php $this->head() ?>
    15. </head>
    16. <body>
    17. <?php $this->beginBody() ?>
    18. <hi>basic layout</hi>
    19. <div class="wrap">
    20.     <div class="container">
    21.         <ul class="nav nav-pills">
    22.             <li role=presentation"><?= Html::a("Главная",'/web/'); ?></li>
    23.             <li role=presentation"><?= Html::a("Статьи",['post/index']); ?></li>
    24.             <li role=presentation"><?= Html::a("Статья",['post/show']); ?></li>
    25.         </ul>
    26.         <?= $content ?>
    27.     </div>
    28. </div>
    29. <?php $this->endBody() ?>
    30. </body>
    31.  
    32. </html>
    33. <?php $this->endPage() ?>