ui_icons.html 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <!-- start: PAGE TITLE -->
  2. <section id="page-title" class="page-title-center">
  3. <div class="row">
  4. <div class="col-sm-8 col-sm-offset-2">
  5. <h1 class="mainTitle" translate="sidebar.nav.element.FONTAWESOME">{{ mainTitle }}</h1>
  6. <span class="mainDescription">Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.</span>
  7. <input ng-model="search" class="form-control text-center margin-top-15" type="text" placeholder="Search {{icons.name}} icons...">
  8. <div ncy-breadcrumb></div>
  9. </div>
  10. </div>
  11. </section>
  12. <!-- end: PAGE TITLE -->
  13. <!-- start: FONTAWESOME ICONS -->
  14. <!-- /// controller: 'IconsCtrl' - localtion: assets/js/controllers/iconsCtrl.js /// -->
  15. <div ng-controller="IconsCtrl">
  16. <div ng-repeat="icons in icons | filter: { type: 'fontawesome' }">
  17. <div class="container-fluid container-fullw bg-white" ng-repeat="sections in icons.sections" ng-if="(sections.icons | filter: search).length">
  18. <div class="row">
  19. <div class="col-md-12">
  20. <h5 class="over-title margin-bottom-15">{{sections.title}}</h5>
  21. <div class="row the-icons">
  22. <div class="fa-hover col-md-3 col-sm-4" ng-repeat="item in sections.icons | filter: search">
  23. <i class="{{icons.prefix}} {{item}}"></i> {{item}}
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. <!-- end: FONTAWESOME ICONS -->