Загрузка...

Styles do not work in main.tpl

Thread in Backend created by faster1998 Jun 29, 2018. 255 views

  1. faster1998
    faster1998 Topic starter Jun 29, 2018 0 May 24, 2018
    Значит так когда я подключил к index.php main.tpl который находиться в templates/default/main.tpl наработают стили.
    [IMG]
    [IMG]
    <?php
    $tpl = file_get_contents("templates/default/main.tpl");
    echo $tpl;
    ?>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Тест</title>
    <link rel="stylesheet" type="text/css" href="css/style.css">
    </head>
    <body>
    <div class="test">
    <div class="menu">
    <a href="/" id="btn">Главная</a>
    <a href="/" id="btn">Форум</a>
    </div>
    </div>
    </body>
    </html>
    #btn{
    text-decoration: none;
    color: black;
    font-size: 30px;
    }
    Помогите, как решить?
    +rep в профиль)
     
  2. hitt
    hitt Jun 29, 2018 66 Nov 4, 2017
    Сделай в index:

    <?
    require "templates/default/main.tpl";
    ?>

    или

    <?
    $tpl = file_get_contents("/templates/default/main.tpl");
    echo $tpl;
    ?>
     
  3. faster1998
    faster1998 Topic starter Jun 29, 2018 0 May 24, 2018
    Неработает так пробывал...
     
Loading...
Top