审查视图

public/themes/simpleboot3_mobile/portal/enjoy_detail.html 2.6 KB
jinglong authored
1 2 3 4 5 6 7 8 9 10 11
<!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">
    <link rel="stylesheet" type="text/css" href="__TMPL__/public/assets/swiper3/swiper.min.css" />
    <link rel="stylesheet" href="__TMPL__/public/assets/css/happy.css" />
    <link rel="stylesheet" href="__TMPL__/public/assets/css/mask.css" />
zhangwei authored
12
    <title>星享体验详情 </title>
jinglong authored
13 14 15
</head>

<body>
zhangwei authored
16
    <include file="public@header" />
jinglong authored
17 18
    <div class="mask">
    </div>
zhangwei authored
19
    <include file="public@slide" />
jinglong authored
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
    <div class="happy_foreignBox2">
        <!--banner-->
        <div class="hp_forImg">
            <notempty name="res.image_url">
                <img src="{:cmf_get_image_url($res.image_url[0]['url'])}" alt="">
            </notempty>
        </div>
        <!--内容-->
        <div class="hp_forCon">
            <h1 class="hp_forConTitle">{$res.post_title}</h1>
            <span class="hp_forConTime"></span>
            <!--富文本-->
            <div class="hp_forConText">
                <div class="hp_forConTime" style="color:#333;">{$res.post_content}</div>
                <!--轮播-->
                <div class="hp_fwb swiper-container">
                    <div class="swiper-wrapper">
                        <!--循环列表-->
                        <volist name="res.image_url" id="vo" offset="1">
                            <div class="swiper-slide">
                                <img class="fwb_Img" src="{:cmf_get_image_url($vo.url)}" />
                                <p class="fwb_Txt one-txt-cut">{$res.post_title}</p>
                            </div>
                        </volist>
                    </div>
                    <div class="swiper-pagination"></div>
                </div>
            </div>
        </div>
    </div>
    <!--评论-->
zhangwei authored
51 52
    <include file="public@comment" />
    <include file="public@footer" />
jinglong authored
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    <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/swiper3/swiper.min.js"></script>
    <script src="__TMPL__/public/assets/js/public.js"></script>
    <script type="text/javascript">
        //banner
        var swiper = new Swiper('.swiper-container', {
            pagination: '.swiper-pagination',
            paginationClickable: true,
            centeredSlides: true,
            loop: true,
            autoplayDisableOnInteraction: false
        });
    </script>
</body>

</html>