logseq_templates/pages/Overview___Projects.md

16 lines
690 B
Markdown
Raw Normal View History

2024-01-06 19:24:10 +00:00
# Projects
- Projects are *buckets of goal-oriented tasks with fixed deadlines.*
- Organize these by time-bound projects. Once these particular projects are complete no longer relevant to you, change the status to Completed
- # all your **CURRENT** projects
2024-01-07 11:04:11 +00:00
- {{query (and (page-property :type project) (page-property :status "Active"))}}
2024-01-06 19:24:10 +00:00
- # all your **Planned** projects
2024-01-07 11:04:11 +00:00
- {{query (and (page-property :type project) (page-property :status "Planned"))}}
2024-01-06 19:24:10 +00:00
- # all your **Ideas** projects
2024-01-07 11:04:11 +00:00
- {{query (and (page-property :type project) (page-property :status "Idea"))}}
2024-01-06 19:24:10 +00:00
- # all your **Completed** projects
2024-01-07 11:04:11 +00:00
- {{query (and (page-property :type project) (page-property :status "Completed"))}}