| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <!DOCTYPE html><html><head>    {%include 'inc/header.html'%}    <link href="{{static_url('css/detail.css')}}" rel="stylesheet">    <style>    .detail img{        width: 100%;        height:100%;    }    </style>    </head><body>    {%include 'inc/menu.html'%}    <div class="wrapper-100 color-1">        <div class="wrapper">            <div class="banner">                <img src="{{static_url('images/69ef41b2.banner1.jpg')}}" width="100%">                <span>帮助中心</span>            </div>            <div class="content">                <div class="menu">                    <h3>常见问题目录</h3>                    <ul>                        {% for v in data['category'] %}                        <li><a href="{{v['link']}}">{{v['name']}}</a></li>                        {% end %}                    </ul>                </div>                {% if data['info']['content'] %}                <div class="detail">                    <h1>{{data['info']['name']}}</h1>                    {% raw data['info']['content'] %}                </div>                {% end %}            </div>        </div>    </div>    {%include 'inc/footer.html'%}{%include 'inc/script.html'%}</body></html>
 |