documentation update + code fixes
This commit is contained in:
@ -23,10 +23,13 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
<div class="col-xs-12 col-sm-6 col-md-6">
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-md-4">
|
||||
<?= Html::img($profile->getAvatarUrl(230), [
|
||||
'class' => 'img-rounded img-responsive',
|
||||
'alt' => $profile->user->username,
|
||||
]) ?>
|
||||
<?= Html::img(
|
||||
$profile->getAvatarUrl(230),
|
||||
[
|
||||
'class' => 'img-rounded img-responsive',
|
||||
'alt' => $profile->user->username,
|
||||
]
|
||||
) ?>
|
||||
</div>
|
||||
<div class="col-sm-6 col-md-8">
|
||||
<h4><?= $this->title ?></h4>
|
||||
@ -46,8 +49,11 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
<?php if (!empty($profile->public_email)): ?>
|
||||
<li>
|
||||
<i class="glyphicon glyphicon-envelope text-muted"></i>
|
||||
<?= Html::a(Html::encode($profile->public_email), 'mailto:'.
|
||||
Html::encode($profile->public_email))
|
||||
<?= Html::a(
|
||||
Html::encode($profile->public_email),
|
||||
'mailto:' .
|
||||
Html::encode($profile->public_email)
|
||||
)
|
||||
?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
|
||||
Reference in New Issue
Block a user