faq.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link rel="shortcut icon" href="{$mymps_global[SiteUrl]}/favicon.ico" />
  6. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/global.css" />
  7. <link rel="stylesheet" href="{$mymps_global[SiteUrl]}/template/default/css/aboutus.css" />
  8. <script src="{$mymps_global[SiteUrl]}/template/global/noerr.js" type="text/javascript"></script>
  9. <title>{$page_title}</title>
  10. </head>
  11. <body class="{$mymps_global[cfg_tpl_dir]} full">
  12. {mytemplate inc_head_about}
  13. <div class="clear"></div>
  14. <div class="faq">
  15. {php $i=1;}
  16. {loop $faq_type $mymps}
  17. <dl class="qlist cfix">
  18. <dt><i class="b-{$i}"></i>{$mymps[typename]}</dt>
  19. <dd class="cfix">
  20. {loop $mymps[faq] $w}
  21. <a class="{if $w[id] == $faq[id]}current{/if}" href="{$mymps_global[SiteUrl]}{$w[uri]}" title="{$w[title]}">{echo cutstr($w[title],20)}</a>
  22. {/loop}
  23. </dd>
  24. </dl>
  25. {php $i++;}
  26. {/loop}
  27. <div class="clear"></div>
  28. <div class="faqcontent">
  29. <h1>{$faq[title]}</h1>
  30. <p>
  31. {$faq[content]}
  32. </p>
  33. </div>
  34. </div>
  35. <div class="clear"></div>
  36. {mytemplate inc_foot_about}
  37. </body>
  38. </html>