示例#1
0
"><?php 
    echo Html::encode($article->title);
    ?>
</a>
                    <a target="_blank" class="pull-left"
                       href="<?php 
    echo Url::to(['site/view', 'slug' => $article->slug]);
    ?>
">
                        <i class="glyphicon glyphicon-share" style="font-size:0.5em;margin-right:1em;"></i>
                    </a>
                </h2>
                <p>
<?php 
    $html = Markdown::process($article->content, 'gfm');
    echo Str::closeTags(Str::limit($html, 200));
    ?>
                </p>
                <p>
                    <i class="glyphicon glyphicon-calendar"></i><span><?php 
    echo $article->created_at;
    ?>
(<?php 
    echo Str::friendlyDate($article->created_at);
    ?>
)</span>
                    <a target="_blank" href="<?php 
    echo Url::to(['site/view', 'slug' => $article->slug]);
    ?>
#comments">
                        <i class="glyphicon glyphicon-share" style="font-size:0.5em;"></i>