-
-
Save essamalsaloum/e2a82ec24bfb67f85cb8d56754de5c11 to your computer and use it in GitHub Desktop.
Revisions
-
Amir Tugendhaft revised this gist
Oct 24, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -23,6 +23,6 @@ table div.table-footer Shipping: $#{invoice.shipping} div.table-footer total: $#{invoice.total} h3.comments-title Comments p #{invoice.comments}
-
Amir Tugendhaft created this gist
Oct 24, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ // 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 Comments p #{invoice.comments}