diff --git a/private/templates/org-mode/__contact.org b/private/templates/org-mode/__contact.org new file mode 100644 index 000000000..067dd4d09 --- /dev/null +++ b/private/templates/org-mode/__contact.org @@ -0,0 +1,14 @@ +#+TITLE:${1:Firstname Lastname} +Created `(format-time-string "<%Y-%m-%d>")` + +| Contact | ${2:Firstname Lastname} | +| Email | ${3:email@address.com} ([[mailto:$2][email]]) | +| Address | ${4:PO Box 5, 2920} | +| City | ${5:Charlottenlund} | +| Country | ${6:Denmark} | + +* Projects [/] +** $7 [/] +* Invoices [/] +** TODO ${0:YYMM-0000 1,000 USD} +* Notes \ No newline at end of file diff --git a/private/templates/org-mode/__invoice.yml b/private/templates/org-mode/__invoice.yml new file mode 100644 index 000000000..f4940ddbd --- /dev/null +++ b/private/templates/org-mode/__invoice.yml @@ -0,0 +1,23 @@ +--- +id: ${1:1234-5678} +currency: ${2:CAD} +date: + created: `(format-time-string "%Y-%m-%d")` + sent: `(format-time-string "%Y-%m-%d")` + +contact: + name: $3 + email: $4 + phone: $5 + address: >- + $6 + +items: + - name: $0 + rate: 10.00 + qty: 1 + description: >- + ? + +notes: >- + ? diff --git a/private/templates/org-mode/__project.org b/private/templates/org-mode/__project.org new file mode 100644 index 000000000..a0c6a3216 --- /dev/null +++ b/private/templates/org-mode/__project.org @@ -0,0 +1,10 @@ +#+TITLE:${1:Project Name} +Created `(format-time-string "<%Y-%m-%d>")` + +| Contact | [[contact:$2][${2:Contact Name}]] | + +${3:...} + +* Tasks [/] +* Timeframe +* Notes \ No newline at end of file