审查视图

public/themes/simpleboot3/portal/region/get_future_detail.html 1.7 KB
景龙 authored
1 2 3 4 5 6 7
<!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">
8
    <title>公益未来详情</title>
景龙 authored
9
    <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
景龙 authored
10
    <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css">
景龙 authored
11 12
</head>
13
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
景龙 authored
14
    <!--头部-->
15
    <include file="public@header" />
景龙 authored
16 17 18 19
    <!--彈出框-->
    <div class="mask">

    </div>
20
    <!-- 侧边栏 -->
21
    <include file="public@slide" />
景龙 authored
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">
            <notempty name="res.image_url">
                <img src="{:cmf_get_image_url($res.image_url)}" alt="">
                <else/>
                <img src="__TMPL__/public/assets/starImg/aicon_80.png" alt="">
            </notempty>

        </div>
        <!--main-->
        <div class="show_main">
            <!-- 头部 -->
            <div class="show_main_Tit clearfix">
                <h1>{$res.post_title}</h1>
38
                <!--<p>{$res.create_time|date="Y-m-d",###}</p>-->
景龙 authored
39 40 41 42 43 44 45
            </div>
            <!-- 文字内容 -->
            <div class="show_main_txt">
                {$res.post_content}
            </div>
        </div>
        <!-- 评论 -->
46
        <include file="public@comment" />
景龙 authored
47 48
    </div>
    <!-- 底部 -->
49
    <include file="public@footer" />
景龙 authored
50 51 52
</body>
<script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
<script src="__TMPL__/public/assets/js/public.js"></script>
53
景龙 authored
54
</html>