Forked from dannberg/obsidian-daily-note-template.txt
Last active
July 18, 2024 17:51
-
-
Save bkcraft-1/9475da10db12c2c7516584a2d423c0c6 to your computer and use it in GitHub Desktop.
Dann Berg's Daily Note Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. Read the full tour: https://dannb.org/blog/2022/obsidian-daily-note-template/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
created: | |
- <% tp.file.creation_date() %> | |
--- | |
tags:: [[Daily Entries]] | |
# <% 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 Questions | |
##### π Last night, after work, I... | |
- <% tp.file.cursor() %> | |
##### π One thing I've excited about right now is... | |
- | |
##### π One+ thing I plan to accomplish today is... | |
- [ ] | |
##### π One thing I'm struggling with today is... | |
- | |
--- | |
# π Notes | |
- | |
--- | |
### 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 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
All I did was move the cursor to the first question