sitemap.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <html>
  2. <head>
  3. <title>网站地图</title>
  4. <meta charset="UTF-8">
  5. <link href="/static/css/sitemap.css" rel="stylesheet">
  6. <style>
  7. #map {
  8. width: 100%;
  9. overflow: hidden;
  10. }
  11. .page {
  12. width: 240px;
  13. margin: 0 auto;
  14. display: block;
  15. margin-bottom: 30px;
  16. text-align: center;
  17. overflow: hidden;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="map">
  23. <foreach name="datas" id="v">
  24. <if condition="$v.id">
  25. <if condition="$v.type eq 1">
  26. <a href="/xm{$v.id}/" title="{$v.title}">{$v.title}</a>
  27. <elseif condition="$v.type eq 2"/>
  28. <a href="/b{$v.id}/" title="{$v.title}">{$v.title}</a>
  29. <else/>
  30. <a href="/news{$v.id}/" title="{$v.title}">{$v.title}</a>
  31. </if>
  32. </if>
  33. </foreach>
  34. </div>
  35. <div class="page">
  36. <a href="/sitemap-{$lastPage}.shtml">上一页</a>
  37. <if condition="$nextPage">
  38. <a href="/sitemap-{$nextPage}.shtml">下一页</a>
  39. </if>
  40. </div>
  41. </body>
  42. </html>