Last active
December 26, 2018 00:50
-
-
Save AmirTugi/9e844042a28d5ea53b7f37fbb82c3f16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use !{var} to use unescaped conent | |
| style(type="text/css") !{compiledStyle} | |
| h1.title Invoice number ##{invoice.id} | |
| p.created-at #{invoice.createdAt} | |
| h3 For: #{invoice.customer.number} | |
| table | |
| thead | |
| tr | |
| th # | |
| th Item | |
| th Price | |
| tbody | |
| each line in invoice.lines | |
| tr | |
| td #{line.id} | |
| td #{line.item} | |
| td #{line.price} | |
| div.table-footer Shipping: $#{invoice.shipping} | |
| div.table-footer total: $#{invoice.total} | |
| h3.comments-title Comments | |
| p #{invoice.comments} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment