Commit 2908ceac41514a148fb3bcec0707adb70cf29451
1 parent
1efde27b
comment styles 2
Showing
1 changed file
with
16 additions
and
7 deletions
Show diff stats
frontend/views/blog/view.php
... | ... | @@ -56,13 +56,22 @@ |
56 | 56 | |
57 | 57 | </div> |
58 | 58 | <!-- /#post-content --> |
59 | - | |
60 | - <?= CommentWidget::widget( | |
61 | - [ | |
62 | - 'model' => $article, | |
63 | - 'reply' => true, | |
64 | - ] | |
65 | - ) ?> | |
59 | + | |
60 | + <div class="article_comms-wr"> | |
61 | + <div class="row"> | |
62 | + <div class="col-md-12"> | |
63 | + <div class="panel-heading"> | |
64 | + <h3 class="panel-title">Оставить комментарий</h3> | |
65 | + </div> | |
66 | + <?= CommentWidget::widget( | |
67 | + [ | |
68 | + 'model' => $article, | |
69 | + 'reply' => true, | |
70 | + ] | |
71 | + ) ?> | |
72 | + </div> | |
73 | + </div> | |
74 | + </div> | |
66 | 75 | |
67 | 76 | |
68 | 77 | <!-- <div id="disqus_thread"></div>--> | ... | ... |