keywords.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <div class="wrapper">
  2. <aside class="sidebar">
  3. <div>
  4. <form class="filter">
  5. <ul>
  6. <li>
  7. <h3><i class="fa fa-filter"></i>Keyword panel</h3>
  8. </li>
  9. </ul>
  10. <ul ng-if="editing">
  11. <li>
  12. <label for="title">Keyword</label>
  13. <input type="text" ng-model="oldkw" class="form-control" placeholder="url" disabled>
  14. </li>
  15. <li>
  16. <label for="title">New keyword</label>
  17. <input type="text" ng-model="newkw" class="form-control" placeholder="name">
  18. </li>
  19. <li>
  20. <label for="title">Weight</label>
  21. <input type="text" ng-model="weight" class="form-control" placeholder="name">
  22. </li>
  23. <li class="buttons">
  24. <button ng-click="cancel()" class="reset">Cancel</button>
  25. <button ng-click="update(oldkw, newkw, weight)">Update</button>
  26. </li>
  27. </ul>
  28. <ul ng-if="deleting">
  29. <li>
  30. <label for="title">Keyword</label>
  31. <input type="text" ng-model="oldkw" class="form-control" placeholder="url" disabled>
  32. </li>
  33. <li class="buttons">
  34. <button ng-click="cancel()" class="reset">Cancel</button>
  35. <button ng-click="remove(oldkw)">Delete</button>
  36. </li>
  37. </ul>
  38. <ul ng-if="creating">
  39. <li>
  40. <label for="title">Keyword</label>
  41. <input type="text" ng-model="keyword" class="form-control" placeholder="name">
  42. </li>
  43. <li>
  44. <label for="title">Weight</label>
  45. <input type="text" ng-model="weight" class="form-control" placeholder="name">
  46. </li>
  47. <li class="buttons">
  48. <button ng-click="cancel()" class="reset">Cancel</button>
  49. <button ng-click="add(keyword, weight)">Save</button>
  50. </li>
  51. </ul>
  52. <ul ng-if="!editing && !deleting && !creating">
  53. <li class="buttons">
  54. <button ng-click="create()">New</button>
  55. </li>
  56. </ul>
  57. </form>
  58. </div>
  59. </aside>
  60. <div class="content-wrapper">
  61. <div class="news-wrapper" style="margin-bottom:0px">
  62. <section ng-repeat="k in keywords" ng-class-odd="'odd-news'" ng-class-even="'even-news'">
  63. <div class="title">
  64. <!--
  65. <h4 style="width:auto">{{k.keyword}} ({{k.weight}}) </h4>
  66. -->
  67. <h4 style="width: 50%">{{k.keyword}}</h4>
  68. <h4 style="width: 20%">{{k.weight}}</h4>
  69. <i ng-click="delete(k)" class="pull-right fa fa-times"></i>
  70. <i ng-click="edit(k)" class="pull-right fa fa-pencil"></i>
  71. </div>
  72. </section>
  73. </div>
  74. <div class="article-wrapper">
  75. </div>
  76. <div style="clear: both"></div>
  77. </div>
  78. </div>
  79. </div>