index.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <include file="Common/header" />
  2. <link rel="stylesheet" href="__PUBLIC__/css/item/index.css?v=1.2" />
  3. <div class="container-narrow">
  4. <div class="masthead">
  5. <div class="btn-group pull-right">
  6. <a class="btn btn-link dropdown-toggle" data-toggle="dropdown" href="#">
  7. {$Think.Lang.more}
  8. <span class="caret"></span>
  9. </a>
  10. <ul class="dropdown-menu">
  11. <!-- dropdown menu links -->
  12. <li><a href="{:U('Home/User/setting')}">{$Think.Lang.personal_setting}</a></li>
  13. <!-- <li><a href="#share-home-modal" data-toggle="modal">{$Think.Lang.share_home}</a></li>
  14. --> <li><a href="https://github.com/star7th/showdoc/issues" target="_blank">{$Think.Lang.feedback}</a></li>
  15. <li><a href="{:U('Home/index/index')}">{$Think.Lang.web_home}</a></li>
  16. <li><a href="{:U('Home/User/exist')}">{$Think.Lang.logout}</a></li>
  17. </ul>
  18. </div>
  19. </ul>
  20. <h3 class="muted"><img src="__PUBLIC__/logo/b_64.png" style="width:50px;height:50px;margin-bottom:15px;" alt="">ShowDoc</h3>
  21. </div>
  22. <hr>
  23. <div class="container-thumbnails">
  24. <ul class="thumbnails">
  25. <foreach name="items" item="item">
  26. <li class="span3 text-center">
  27. <a class="thumbnail" href="{:U('Home/Item/show',array('item_id'=>$item['item_id']))}" title="{$item.item_description}">
  28. <p class="my-item">{$item.item_name}</p>
  29. </a>
  30. </li>
  31. </foreach>
  32. <li class="span3 text-center">
  33. <a class="thumbnail" href="{:U('Home/Item/add')}" title="{$Think.Lang.add_an_item}添加一个新项目">
  34. <p class="my-item ">{$Think.Lang.new_item}&nbsp;<i class="icon-plus"></i></p>
  35. </a>
  36. </li>
  37. </ul>
  38. </div>
  39. </div> <!-- /container -->
  40. <!-- 分享项目框 -->
  41. <div class="modal hide fade" id="share-home-modal">
  42. <div class="modal-header">
  43. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  44. <h3>{$Think.Lang.share_my_home}</h3>
  45. </div>
  46. <div class="modal-body">
  47. <p>{$Think.Lang.home_address}:<code id="share-home-link">{$share_url}</code></p>
  48. <p>{$Think.Lang.home_address_description}</p>
  49. </div>
  50. </div>
  51. <include file="Common/footer" />
  52. <script type="text/javascript">
  53. </script>