Initial commit
This commit is contained in:
35
.trash/Template/Daily note template old.md
Normal file
35
.trash/Template/Daily note template old.md
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
categories: Daily note
|
||||
tags:
|
||||
- daily
|
||||
date: <% tp.date.now("YYYY-MM-DD") %>
|
||||
created: <% tp.date.now("YYYY-MM-DDTHH:mm:ssZ") %>
|
||||
updated: <% tp.date.now("YYYY-MM-DDTHH:mm:ssZ") %>
|
||||
---
|
||||
[[Home]] | [[<% tp.date.now("YYYY-MM-DD", -1, tp.file.title, "YYYY-MM-DD") %>|Yesterday]] | [[<% tp.date.now("YYYY-MM-DD", 1, tp.file.title, "YYYY-MM-DD") %>|Tomorrow]]
|
||||
``` dataview
|
||||
TABLE rows.file.link as "Task"
|
||||
FROM "TaskNotes"
|
||||
WHERE (completed = this.date) OR (status = "in-progress")
|
||||
OR (((status != "done" AND status != "cancelled") AND
|
||||
((start AND start <= this.date) OR
|
||||
(scheduled AND scheduled <= this.date) OR
|
||||
(due AND due <= this.date)))
|
||||
)
|
||||
GROUP BY status
|
||||
SORT rows.priority ASC, rows.due ASC
|
||||
```
|
||||
# notepad
|
||||
- [ ]
|
||||
|
||||
# daily log
|
||||
|
||||
# [[daily-reflection|daily reflection]]
|
||||
|
||||
## what happened today
|
||||
|
||||
|
||||
|
||||
---
|
||||
Log:
|
||||
- <% tp.date.now("YYYY-MM-DDTHH:mm:ss") %>: Daily note created.
|
||||
Reference in New Issue
Block a user