Advertisement
Guest User

Untitled

a guest
Nov 20th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. //- This is unbuffered comment (will not show up in generated HTML) [http://jade-lang.com/reference/comments]
  2. h1= title
  3.  
  4. p Master Interface
  5.  
  6. //- master variable [see index.js, line 45, 49]
  7. ul
  8. each el in master
  9. li
  10. a(href= '/index?supplier='+el.SupplierID) #{el.CompanyName}
  11.  
  12. //- GET Param. ^----------------------^
  13. //- Iteration [http://jade-lang.com/reference/iteration]
  14. //- Attributes "a(href...)" [http://jade-lang.com/reference/attributes]
  15. //- Inline JS "#{el.CompanyName}" [http://jade-lang.com/reference/code, see Interpolation]
  16.  
  17. //- detail variable [see index.js, line 45, 49]
  18. if detail != null
  19. p Detail Interface
  20. ul
  21. each el in detail
  22. li= el.ProductName
  23. //- Conditionals [http://jade-lang.com/reference/conditionals]
  24. //- Iteration [http://jade-lang.com/reference/iteration]
  25. //- Inline JS "#{el.CompanyName}" [http://jade-lang.com/reference/code, see Buffered Code]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement