审查视图

public/themes/simpleboot3/portal/region/get_more_future.html 3.7 KB
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/bootstrap4.0.css">
    <link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
    <style>
12 13
        a:hover {
            text-decoration: none;
14 15 16 17
        }
    </style>
</head>
18 19
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
    <include file="public@header" />
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    <div class="show_futureBox">
        <!-- 顶部标题 -->
        <div class="show_INMain_tit clearfix">
            <div class="show_IN1 clearfix">
                <img src="__TMPL__/public/assets/starImg/aicon_53.png" alt="" style="margin-top:8px;width: 32px;">
                <p>公益<span>未来</span></p>
                <h2>Commonweal & Future</h2>
            </div>
        </div>
        <!-- 内容 -->
        <div class="show_fuCon">
            <!-- 第一部分 -->
            <div class="show_fuCon1">
                <volist name="res['data']" id="vo" offset="0" length="2">
                    <a href="/portal/region/getFutureDetail?id={$vo.id}">
                        <div class="show_fuCon1Box">
                            <div class="show_fuCon1Img">
                                <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
                            </div>
                            <div class="show_fuCon1Txt">
                                <h1 class="show_fuCon1Txt1">{$vo.post_title}</h1>
                                <p class="show_fuCon1Txt2">{$vo.post_excerpt}</p>
                            </div>
                        </div>
                    </a>
                </volist>
            </div>
            <!-- 第二部分 -->
            <volist name="res['data']" id="vo" offset="2" length="1">
                <a href="/portal/region/getFutureDetail?id={$vo.id}">
                    <div class="show_fuCon2">
                        <div class="show_fuCon2Img">
                            <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
                        </div>
                        <div class="show_fuCon2Txt">
                            <h1 class="show_fuCon1Txt1">{$vo.post_title}</h1>
                            <p class="show_fuCon2Txt2">{$vo.post_excerpt}</p>
                        </div>
                    </div>
                </a>
            </volist>
            <!-- 第三部分 -->
            <div class="show_fuCon1">
                <volist name="res['data']" id="vo" offset="3" length="2">
                    <a href="/portal/region/getFutureDetail?id={$vo.id}">
                        <div class="show_fuCon1Box">
                            <div class="show_fuCon1Img">
                                <img src="{:cmf_get_image_url($vo.thumbnail)}" alt="">
                            </div>
                            <div class="show_fuCon1Txt">
                                <h1 class="show_fuCon1Txt1">{$vo.post_title}</h1>
                                <p class="show_fuCon1Txt2">{$vo.post_excerpt}</p>
                            </div>
                        </div>
                    </a>
                </volist>
            </div>
        </div>
        <!-- 分页 -->
        <div class="pagination">
            {$page|default=''}
        </div>
    </div>
83
    <include file="public@footer" />
84 85 86 87 88
    <script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
    <script src="__TMPL__/public/assets/js/public.js"></script>
</body>

</html>