about.php
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
    use artbox\core\components\SeoComponent;
    use artbox\core\models\Page;
    use yii\web\View;
    
    /**
     * @var View $this
     */
    /**
     * @var SeoComponent $seo
     * @var Page $page_about
     */
    $seo = \Yii::$app->get('seo');
    $this->title = \Yii::t('app', 'О клинике');
    $this->params[ 'breadcrumbs' ][] = $this->title;
?>
<div class="container">
    <section>
        <div class="row">
            <div class="col-md-12">
                <?php
                    echo $page_about->lang->body;
                ?>
            </div>
        </div>
    </section>
</div>
<div id="get-it" class="pages">
    <div class="container">
        <div class="col-md-12 col-sm-12" style="text-align: center;">
            <a href="#" class="btn bnm btn-template-transparent-primary modal-link" data-form="appointment-modal" data-modalname="<?=\Yii::t('app', 'Записаться на приём')?>"><?=\Yii::t('app', 'Записаться на приём')?></a>
        </div>
    </div>
</div>