Advertisement
aivavic

view

Nov 9th, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <div class="incident-box">
  2.     <?= ListView::widget([
  3.         'itemView' => function ($model_p) {
  4.             return $this->render('_item', ['model' => $model_p]);
  5.         },
  6.     ]) ?>
  7. </div>
  8. <section class="incident-body">
  9.     <h2><?= $model->title; ?></h2>
  10.     <p><?= $model->body; ?></p>
  11.  
  12.     <div class="incident-body__social-wrap">
  13.         <a class="little-social facebook" href="#"><span></span></a>
  14.         <a class="little-social twitter" href="#"><span></span></a>
  15.     </div>
  16. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement