| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php include Doo::conf()->SITE_PATH . Doo::conf()->PROTECTED_FOLDER . "viewc//header.php"; ?>
- <script type="text/javascript" src="<?php echo WEB_SITE_GLOBAL ?>/js/help.js"></script>
- <div class="wrapContent helpBg clearfix">
- <div class="pageTitle width1020">
- <div class="clearfix"><h1>我们提供软件自助答疑平台</h1></div>
- <div class="clearfix"><h2>不用排队等待、无需在线咨询</h2></div>
- <div class="clearfix"><h2>一键搜索,快速准确为您解惑答疑</h2></div>
- </div>
- <div class="width1060 clearfix">
- <div class="sideBar fL" id="sideBar">
- <h2><a href="/help" >返回"帮助"首页</a></h2>
- <ul class="helpnav">
- <li><a href="javascript:history.go(-1)"><?php echo $data['catetory']['name']; ?></a></li>
-
- </ul>
- </div>
- <div class="mainContent">
- <div class="help">
- <div class="helpCon">
- <h2 ><?php echo $data['article_info']['title']; ?></h2>
- <div class="helpList helpListCont">
- <p><?php echo $data['article_info']['content']; ?></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <?php include Doo::conf()->SITE_PATH . Doo::conf()->PROTECTED_FOLDER . "viewc//footer.php"; ?>
|