index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {extend name="layout/content" /}
  2. {block name="title"}<title>{$info.title}_祈盟文化</title>{/block}
  3. {block name="header"}
  4. <link rel="stylesheet" href="__STATIC__/css/userinfo.css">
  5. {/block}
  6. {block name="content"}
  7. <div class="warp_userinfo policy">
  8. <div class="container">
  9. <!-- 左侧菜单栏 -->
  10. <div class="left_tab info_tab ">
  11. {volist name="aboutList" id="vo"}
  12. <a href="{:url('about/'.$vo.name)}" {if condition="$vo.name eq $info.name"}class="active"{/if}>
  13. {$vo.title}
  14. </a>
  15. {/volist}
  16. </div>
  17. <!-- 右侧内容 -->
  18. <div class="content_right">
  19. <div class="title">
  20. <h1>{$info.title}</h1>
  21. {if condition="$info.name eq 'aboutus'"}
  22. <div class="language">
  23. <a href="javascript:" class="chinese select">中文</a>
  24. <span>|</span>
  25. <a href="javascript:" class="english"> English </a>
  26. </div>
  27. {/if}
  28. </div>
  29. {if condition="$info.name eq 'aboutus'"}
  30. <div class="chinese_cont">
  31. {$info.content}
  32. </div>
  33. <div class="english_cont">
  34. <p>Loyo mobile game platform provides players with free mobile game downloads, mobile game rankings and a large number of free mobile game packages! Loyo also provides fresh and fun mobile game information, massive mobile games, mobile games, mobile games and so on.</p>
  35. <p>Loyo is founded by game professionals of 5-10 years of experience in the game industry. It has a team of mobile game planning, mobile game development and mobile game operations. Every member of Loyo has a deep-love and understanding in the game industry. Loyo is one of the few emerging game companies in China that has game development, game operations and guild management. Since its establishment, Loyo has rapidly deployed the mobile game industry with its solid strength foundation, and has reached a deep strategic cpsship with industry giants such as Baidu Games, 360 Games and Lenovo Games.</p>
  36. </div>
  37. {else/}
  38. <div class="warp_cont warp_cont{$info.id}">
  39. {$info.content}
  40. </div>
  41. {/if}
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. {/block}
  47. {block name="detail_js"}
  48. <script>
  49. $(".english_cont").hide();
  50. $(".chinese").click(function(){
  51. $(this).addClass("select");
  52. $(".english").removeClass("select");
  53. $(".title h1").html("关于我们");
  54. $(".chinese_cont").show();
  55. $(".english_cont").hide();
  56. })
  57. $(".english").click(function(){
  58. $(this).addClass("select");
  59. $(".chinese").removeClass("select");
  60. $(".title h1").html("About Us");
  61. $(".chinese_cont").hide();
  62. $(".english_cont").show();
  63. })
  64. var a= $(".policy .content_right").height();
  65. $(".info_tab").css("height",a);
  66. </script>
  67. {/block}