No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sitemap.htm 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. <title>{$eyou.seo_title}</title>
  6. </head>
  7. <style>
  8. * {
  9. margin: 0px;
  10. padding: 0px;
  11. }
  12. a {
  13. color: grey;
  14. text-decoration: none;
  15. }
  16. h1 a {
  17. color: Black;
  18. }
  19. h1 {
  20. font-size: 15px;
  21. display: block;
  22. width: 1200px;
  23. margin: 0 auto;
  24. border: 1px solid #eee;
  25. padding: 10px;
  26. color: Black;
  27. }
  28. h2 {
  29. color: Black;
  30. font-size: 16px;
  31. margin-bottom: 10px;
  32. }
  33. a:hover {
  34. color: Black;
  35. text-decoration: underline;
  36. }
  37. .content {
  38. width: 1200px;
  39. border: 1px solid #eee;
  40. margin: 0 auto;
  41. padding: 10px;
  42. margin-top: 10px;
  43. color: #999;
  44. overflow: hidden;
  45. }
  46. li {
  47. text-indent: 20px;
  48. list-style: disc;
  49. }
  50. .content li {
  51. width: 285px;
  52. text-indent: 5px;
  53. float: left;
  54. list-style: none;
  55. height: 30px;
  56. }
  57. .content li a {
  58. display: block;
  59. height: 25px;
  60. overflow: hidden;
  61. }
  62. </style>
  63. <body>
  64. <h1>
  65. <a href="{$eyou.index.url}">{$eyou.index.title}</a>
  66. </h1>
  67. {notempty name="$eyou.type_list"}
  68. <div class="content">
  69. <h2>分类</h2>
  70. <ul>
  71. {volist name="$eyou.type_list" id="vo"}
  72. <li><a href="{$vo.url}">{$vo.title}</a></li>
  73. {/volist}
  74. </ul>
  75. </div>
  76. {/notempty}
  77. {notempty name="$eyou.arc_list"}
  78. <div class="content">
  79. <h2>最新文章</h2>
  80. <ul>
  81. {volist name="$eyou.arc_list" id="vo"}
  82. <li><a href="{$vo.url}">{$vo.title}</a></li>
  83. {/volist}
  84. </ul>
  85. </div>
  86. {/notempty}
  87. {notempty name="$eyou.tags_list"}
  88. <div class="content">
  89. <h2>最新tags</h2>
  90. <ul>
  91. {volist name="$eyou.tags_list" id="vo"}
  92. <li><a href="{$vo.url}">{$vo.title}</a></li>
  93. {/volist}
  94. </ul>
  95. </div>
  96. {/notempty}
  97. {notempty name="$eyou.ask_list"}
  98. <div class="content">
  99. <h2>最新问答</h2>
  100. <ul>
  101. {volist name="$eyou.ask_list" id="vo"}
  102. <li><a href="{$vo.url}">{$vo.title}</a></li>
  103. {/volist}
  104. </ul>
  105. </div>
  106. {/notempty}
  107. </body>
  108. </html>