审查视图

public/themes/simpleboot3_mobile/portal/region/get_note_detail.html 1.8 KB
jinglong authored
1 2 3 4 5 6 7 8
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
9 10 11
    <meta name="referrer" content="no-referrer" />
    <meta name="referrer" content="never">
    <meta name="referrer" content="same-origin" />
jinglong authored
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css" />
    <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css" />
    <title>独角日志详情</title>
    <style>
        .sw_deCon{
            font-size: 0.26rem;
            font-weight: 500;
            color: #333;
        }
    </style>
</head>

<body>
    <include file="public@header"/>
    <div class="mask">
    </div>
    <include file="public@slide"/>
    <div class="show_Detail">
        <!--顶部人物介绍-->
        <div class="sw_deTop">
            <div class="sw_deTopImg">
                <img src="{:cmf_get_image_url($res.avatar)}" alt="" />
            </div>
            <div class="sw_deTopTxt">
                <h1 class="sw_deTopTxt1 one-txt-cut">{$res.full_name}</h1>
王毅 authored
37
                <p class="sw_deTopTxt2 txt-cut" style="-webkit-line-clamp:4;">{$res.post_excerpt}</p>
jinglong authored
38 39 40 41
                <span class="sw_deTopTxt3"></span>
            </div>
        </div>
        <!--富文本内容-->
jinglong authored
42
        <div class="sw_deCon share_content">
jinglong authored
43 44 45 46 47 48 49 50 51 52 53 54
            {$res.post_content}
        </div>
    </div>
    <!--评论-->
    <include file="public@comment"/>
    <include file="public@footer"/>
    <script src="__TMPL__/public/assets/js/base.js"></script>
    <script src="__TMPL__/public/assets/js/jquery-2.1.0.js"></script>
    <script src="__TMPL__/public/assets/js/public.js"></script>
</body>

</html>