Files
SRCMS/Application/Home/View/Blog/view.html
martinzhou2015 7b3e979fd4 Update
2015-10-06
2015-10-06 20:25:13 +08:00

23 lines
477 B
HTML

<extend name="Public:common"/>
<block name="main">
<!-- 博客详情 -->
<div class="gallery">
<div class="container">
<div class="col-md-6 col-md-offset-3">
<h3><strong>{$model.title}</strong></h3><hr/>
<div class="row">
<?php
$html = $model;
foreach($model as $value);
echo html_entity_decode($value);
?>
</div>
<div class="row">
<hr/>
<a href="{:U('blog/index')}">返回列表</a>
</div>
</div>
</div>
</block>