Guest User

Untitled

a guest
May 24th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <div class="container" ng-controller="miControlador">
  2. <ul class="left-menu-list list-unstyled" ng-repeat="(name, text) in textures">
  3. <li style="margin-left:20px;">
  4. <a style="cursor:pointer;">{{name}}</a>
  5. </li>
  6. </ul>
  7.  
  8. <br />
  9. <br />
  10. <input type="text" style="width:275px;margin-top:5px;" class="form-control form-control-sm form-control-rounded" placeholder="Search..." ng-model="search">
  11. <br />
  12. <br />
  13. <div class="panel-body">
  14. <div class="cui-ecommerce--catalog">
  15. <div class="row">
  16. <div ng-repeat="(name, text) in textures">
  17. <div ng-repeat="url in text">
  18. <div>
  19. {{url.url}}
  20. <a href="javascript: void(0);" style="cursor:default;">
  21. <img ng-src="{{url.url }}" />
  22. </a>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30.  
  31. <ul class="left-menu-list list-unstyled" ng-repeat="(name, text) in textures">
  32. <li style="margin-left:20px;">
  33. <a style="cursor:pointer;">{{name}}</a>
  34. </li>
  35. </ul>
Add Comment
Please, Sign In to add comment