示例#1
0
			<div class="col-lg-2 col-md-2 col-sm-2 user-head-pic">
				<img src="<?php echo $model->head_picture?>" class="img-circle" id="user-head-pic" width="140px">
			</div>
			<div class="col-lg-3 col-md-3 col-sm-3 zone-username">
				<h2><?php echo $model->username;?></h2>
				<h4 class="signature"><?php echo $model->signature;?></h4>
			</div>

			<div class="col-lg-3 col-lg-offset-4 col-md-3 col-md-offset-4 col-sm-3 col-sm-offset-4 zone-nut">
				<ul class="list-inline">
				  <li class="col-lg-6 col-md-6 col-sm-6 ">
				  	<?php if (Common::transTime(UserCourse::userTotalTime($model->id)) == 0): ?>
				  		<h4>0</h4>
				  	<?php else: ?>
				  		<h4><?php echo Common::transTime(UserCourse::userTotalTime($model->id))?></h4>
				  	<?php endif ?>
				  	<h5>学习时长</h5>
				  </li>
				  <li class="col-lg-6 col-md-6 col-sm-6 ">
				  	<h4><?php echo Nut::nutCount($model->id)?></h4>
				  	<h5>果果</h5>
				  </li>
				</ul>
			</div>
		</div>

		<div class="col-lg-2 col-md-2 col-sm-2  zone-user-sex">
			<?php if ($model->sex == $model::SEX_FEMALE) : ?>
				<span class="fa fa-venus"></span>
			<?php endif; ?>