审查视图

public/themes/simpleboot3/portal/star/get_ecology_detail.html 1.5 KB
jinglong authored
1 2 3 4 5 6 7 8 9 10 11 12
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>活力生态详情</title>
    <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
    <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
</head>
13 14
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
    <include file="public@header" />
jinglong authored
15 16 17
    <div class="mask">
    </div>
    <!-- 侧边栏 -->
18
    <include file="public@slide" />
jinglong authored
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    <!--主体内容-->
    <div class="show_2">
        <!--banner-->
        <div class="show_banner">
            <img src="{:cmf_get_image_url($res.image_url)}" alt="">
        </div>
        <!--main-->
        <div class="show_main">
            <!-- 头部 -->
            <div class="show_main_Tit1 clearfix">
                <h1>{$res.post_title}</h1>
                <!--<p>2019-02-04</p>-->
            </div>
            <!-- 文字内容 -->
            <div class="show_main_txt">
                {$res.post_content}
            </div>
        </div>
        <!-- 评论 -->
38
        <include file="public@comment" />
jinglong authored
39 40
    </div>
41
    <include file="public@footer" />
jinglong authored
42 43 44 45 46
    <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
    <script src="__TMPL__/public/assets/js/public.js"></script>
</body>

</html>