码迷,mamicode.com
首页 > 其他好文 > 详细

CoreThink主题开发(九)使用H-ui开发博客主题之用户个人主页

时间:2017-12-22 15:50:53      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:2-2   gpo   layout   body   width   image   用户   use   ajax   

感谢H-ui、感谢CoreThink!  效果图: 

技术分享图片

这里使用table布局
/Theme/Blog/User/Index/home.html

<extend name="$_home_public_layout"/>

<block name="main">
    <br><br>
    <div class="container">
            <table class="table">
                <thead>
                <tr>
                    <td ><a href="{:U(‘User/Talk/index‘, array(‘to_uid‘ => $user_info[‘id‘]))}" class="btn btn-success radius"><i style="font-size: medium" class="Hui-iconfont"></i> 发私信</a></td>
                    <td class="text-c">
                        <div class="maskWraper round" style="width:100px; height:100px; border:solid 1px">
                        <img src="{$user_info.avatar|get_cover=‘avatar‘}" width="100px" height="100px" >
                        <div class="maskBar text-c">
                            {$user_info.nickname}
                        </div>
                        </div>
                    </td>


                <?php if ($follow_status) :?>

                    <td>
                        <button type="button" class="btn btn-secondary radius ajax-follow"
                                url="{:U(‘User/Follow/add‘, array(‘uid‘ => $user_info[‘id‘]))}">
                            <i style="font-size: medium" class="Hui-iconfont"></i> 已关注
                        </button>
                    </td>

                <?php else :?>

                    <td><button type="button" class="btn btn-secondary radius ajax-follow"
                                             url="{:U(‘User/Follow/add‘, array(‘uid‘ => $user_info[‘id‘]))}">
                        <i style="font-size: medium" class="Hui-iconfont"></i> 加关注
                    </button></td>

                <?php endif; ?>
                    <td class="text-r"><a>个性签名:{$user_info.summary}</a></td>
                </tr>
                </thead>
            </table>

    </div>
</block>
<block name="script">
<script type="text/javascript">
    $(function(){
        $.Huihover(‘.maskWraper‘);
    });
</script>
</block>

  

CoreThink主题开发(九)使用H-ui开发博客主题之用户个人主页

标签:2-2   gpo   layout   body   width   image   用户   use   ajax   

原文地址:http://www.cnblogs.com/mracale/p/8086050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!