审查视图

public/themes/simpleboot3/portal/active/get_active_detail.html 2.2 KB
景龙 authored
1 2 3 4 5 6 7 8 9 10 11
<!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">
    <style>
12 13
        .active_url {
            height: 50px;
景龙 authored
14
            background: #5454AF;
15
            margin-bottom: 80px;
景龙 authored
16
        }
17 18
        
        .active_url p {
景龙 authored
19 20 21 22
            text-align: center;
            line-height: 50px;
            vertical-align: middle;
            font-size: 17px;
23
            color: #fff;
景龙 authored
24
        }
25 26 27
        
        .active_url span {
            color: #3AFFA5;
景龙 authored
28 29 30 31
        }
    </style>
</head>
32 33
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
    <include file="public@header" />
景龙 authored
34 35 36
    <div class="mask">
    </div>
    <!-- 侧边栏 -->
37
    <include file="public@slide" />
景龙 authored
38 39 40 41 42 43 44 45 46 47 48
    <!--主体内容-->
    <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_Tit clearfix">
                <h1>{$res.post_title}</h1>
49
                <!--<p>{$res.create_time|date="Y-m-d",###}</p>-->
景龙 authored
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
            </div>
            <!-- 文字内容 -->
            <div class="show_main_txt">
                {$res.post_content}
            </div>
        </div>
        <notempty name="user">
            <div class="active_url">
                <p>
                    活动外链:<a href="{$res.active_url}"><span>{$res.active_url}</span></a>
                </p>
            </div>
            <else/>
            <div class="active_url">
                <p>
                    登录后可见活动外链
                </p>
            </div>
        </notempty>
    </div>
71
    <include file="public@footer" />
景龙 authored
72 73 74 75 76
</body>
<script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
<script src="__TMPL__/public/assets/js/public.js"></script>

</html>