diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-06-04 11:23:13 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-06-04 11:23:13 -0500 |
commit | 99e4a3d8adcb5fad1d8eb77b9c519a979079eb31 (patch) | |
tree | 33a2f786a03e71948055133a9514cc5bf01bd5f4 /templates/generic | |
download | org-templates-99e4a3d8adcb5fad1d8eb77b9c519a979079eb31.tar.gz org-templates-99e4a3d8adcb5fad1d8eb77b9c519a979079eb31.tar.bz2 org-templates-99e4a3d8adcb5fad1d8eb77b9c519a979079eb31.zip |
feat: initial commit
Diffstat (limited to 'templates/generic')
-rw-r--r-- | templates/generic/blog-post.org | 15 | ||||
-rw-r--r-- | templates/generic/book-notes.org | 18 | ||||
-rw-r--r-- | templates/generic/daily-planner.org | 12 | ||||
-rw-r--r-- | templates/generic/habit-tracker.org | 7 | ||||
-rw-r--r-- | templates/generic/journal.org | 9 | ||||
-rw-r--r-- | templates/generic/learning-plan.org | 15 | ||||
-rw-r--r-- | templates/generic/meeting-notes.org | 14 | ||||
-rw-r--r-- | templates/generic/project.org | 16 | ||||
-rw-r--r-- | templates/generic/reading-list.org | 15 | ||||
-rw-r--r-- | templates/generic/recipe.org | 13 | ||||
-rw-r--r-- | templates/generic/task-tracker.org | 11 | ||||
-rw-r--r-- | templates/generic/weekly-review.org | 12 | ||||
-rw-r--r-- | templates/generic/zettelkasten.org | 10 |
13 files changed, 167 insertions, 0 deletions
diff --git a/templates/generic/blog-post.org b/templates/generic/blog-post.org new file mode 100644 index 0000000..10a394b --- /dev/null +++ b/templates/generic/blog-post.org @@ -0,0 +1,15 @@ +#+TITLE: Title Goes Here +#+AUTHOR: Your Name +#+DATE: %<%Y-%m-%d> +#+FILETAGS: :blog: +#+OPTIONS: toc:nil html-postamble:nil + +* Introduction + +* Main Content + +* Conclusion + +# Local Variables: +# org-export-with-toc: nil +# End: diff --git a/templates/generic/book-notes.org b/templates/generic/book-notes.org new file mode 100644 index 0000000..f98f8c2 --- /dev/null +++ b/templates/generic/book-notes.org @@ -0,0 +1,18 @@ +#+TITLE: Book Notes: [Book Title] +#+AUTHOR: Your Name +#+DATE: %<%Y-%m-%d> +#+FILETAGS: :books: + +* Metadata +- Author: +- Started: +- Finished: +- Rating: ☆☆☆☆☆ + +* Summary + +* Key Ideas + +* Quotes + +* Personal Reflections
\ No newline at end of file diff --git a/templates/generic/daily-planner.org b/templates/generic/daily-planner.org new file mode 100644 index 0000000..077c7a9 --- /dev/null +++ b/templates/generic/daily-planner.org @@ -0,0 +1,12 @@ +* Daily Planner - %<%Y-%m-%d> +** Schedule +08:00 - Wake up +09:00 - Work session +12:00 - Lunch +... + +** Tasks +- [ ] Important task +- [ ] Stretch goal + +** Notes diff --git a/templates/generic/habit-tracker.org b/templates/generic/habit-tracker.org new file mode 100644 index 0000000..58ce956 --- /dev/null +++ b/templates/generic/habit-tracker.org @@ -0,0 +1,7 @@ +#+TITLE: Habit Tracker +#+STARTUP: hidestars +* Habits +| Date | Meditate | Read | Exercise | +|------------+----------+------+----------| +| %<%Y-%m-%d> | [ ] | [ ] | [ ] | +| | | | |
\ No newline at end of file diff --git a/templates/generic/journal.org b/templates/generic/journal.org new file mode 100644 index 0000000..4fab5e1 --- /dev/null +++ b/templates/generic/journal.org @@ -0,0 +1,9 @@ +* %<%Y-%m-%d %A> +:PROPERTIES: +:Created: %U +:END: + +** Mood +** Events +** Reflections +** Gratitude diff --git a/templates/generic/learning-plan.org b/templates/generic/learning-plan.org new file mode 100644 index 0000000..730a2a7 --- /dev/null +++ b/templates/generic/learning-plan.org @@ -0,0 +1,15 @@ +#+TITLE: Learning Plan: [Topic] +#+DATE: %<%Y-%m-%d> +#+FILETAGS: :learning:plan: + +* Goal + +* Timeline + +* Resources +- [[https://example.com][Resource Name]] + +* Progress +** TODO Module 1 +** TODO Module 2 +** DONE Module 3
\ No newline at end of file diff --git a/templates/generic/meeting-notes.org b/templates/generic/meeting-notes.org new file mode 100644 index 0000000..bf822b3 --- /dev/null +++ b/templates/generic/meeting-notes.org @@ -0,0 +1,14 @@ +* Meeting: %<%Y-%m-%d> +** Attendees +- Alice +- Bob + +** Agenda +- Item 1 +- Item 2 + +** Notes +- Discussion summary here + +** Action Items +- [ ] Follow up with X diff --git a/templates/generic/project.org b/templates/generic/project.org new file mode 100644 index 0000000..60eda63 --- /dev/null +++ b/templates/generic/project.org @@ -0,0 +1,16 @@ +#+TITLE: Project Template +#+AUTHOR: Your Name +#+DATE: %U +#+OPTIONS: toc:nil + +* Overview +- Goal: +- Deadline: +- Status: + +* Tasks +** TODO Initial Research +** TODO Set Milestones +** TODO Finalize Plan + +* Notes diff --git a/templates/generic/reading-list.org b/templates/generic/reading-list.org new file mode 100644 index 0000000..1715607 --- /dev/null +++ b/templates/generic/reading-list.org @@ -0,0 +1,15 @@ +#+TITLE: Reading List +#+FILETAGS: :reading:list: + +* To Read +** TODO [#B] [[https://example.com][Book Title]] :fiction: + :PROPERTIES: + :Author: Author Name + :END: + +* In Progress +** STARTED Book Title 2 + +* Finished +** DONE Book Title 1 + CLOSED: [%<%Y-%m-%d>]
\ No newline at end of file diff --git a/templates/generic/recipe.org b/templates/generic/recipe.org new file mode 100644 index 0000000..f3c57e3 --- /dev/null +++ b/templates/generic/recipe.org @@ -0,0 +1,13 @@ +#+TITLE: Recipe: Dish Name +#+CATEGORY: Recipes +#+FILETAGS: :cooking: + +* Ingredients +- 1 cup of ... +- 2 tbsp of ... + +* Steps +1. Preheat the oven... +2. Mix ingredients... + +* Notes
\ No newline at end of file diff --git a/templates/generic/task-tracker.org b/templates/generic/task-tracker.org new file mode 100644 index 0000000..0644b4b --- /dev/null +++ b/templates/generic/task-tracker.org @@ -0,0 +1,11 @@ +#+TITLE: Task Tracker +#+TODO: TODO STARTED WAITING | DONE CANCELED + +* Inbox +** TODO Example Task + +* Work +** TODO Something important + +* Personal +** TODO Read a book diff --git a/templates/generic/weekly-review.org b/templates/generic/weekly-review.org new file mode 100644 index 0000000..1b0d02c --- /dev/null +++ b/templates/generic/weekly-review.org @@ -0,0 +1,12 @@ +* Weekly Review - %<%Y-%m-%d> +** What went well? +- + +** What didn’t go well? +- + +** What did I learn? +- + +** What will I focus on next week? +-
\ No newline at end of file diff --git a/templates/generic/zettelkasten.org b/templates/generic/zettelkasten.org new file mode 100644 index 0000000..9caa61f --- /dev/null +++ b/templates/generic/zettelkasten.org @@ -0,0 +1,10 @@ +* [[id:202506040934][Note Title]] +:PROPERTIES: +:ID: 202506040934 +:DATE: %U +:END: + +** Summary +** Key Points +** Links +- [[id:202506041000][Related Note]] |