This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
Obsidian/Evan Steele/Templates/daily-note.md

39 lines
854 B
Markdown

---
created: <% tp.file.creation_date() %>
---
# <% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %>
<< [[<% fileDate = moment(tp.file.title, 'YYYY-MM-DD-dddd').subtract(1, 'd').format('YYYY-MM-DD-dddd') %>|Yesterday]] | [[<% fileDate = moment(tp.file.title, 'YYYY-MM-DD-dddd').add(1, 'd').format('YYYY-MM-DD-dddd') %>|Tomorrow]] >>
---
### 📅 Daily Checklist
##### 🌞 Today's bright spot
-
##### 🙌 Friends & Family
-
##### 🚀 Projects & Goals
-
##### 🎮 Fun & games
-
#### 🏋️ Health & Wellness
-
---
# 📝 Notes
- <% tp.file.cursor() %>
---
### Notes created today
```dataview
List FROM "" WHERE file.cday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.ctime asc
```
### Notes last touched today
```dataview
List FROM "" WHERE file.mday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.mtime asc
```