CoreThink主题开发使用H-ui开发博客主题之用户个人主页
Posted mracalele
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CoreThink主题开发使用H-ui开发博客主题之用户个人主页相关的知识,希望对你有一定的参考价值。
感谢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开发博客主题之用户个人主页的主要内容,如果未能解决你的问题,请参考以下文章
从无到有开发自己的Wordpress博客主题---运行环境准备