-
Star
(188)
You must be signed in to star a gist -
Fork
(37)
You must be signed in to fork a gist
-
-
Save dannberg/48ea2ba3fc0abdf3f219c6ad8bc78eb6 to your computer and use it in GitHub Desktop.
--- | |
created: <% tp.file.creation_date() %> | |
--- | |
tags:: [[+Daily Notes]] | |
# <% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %> | |
<< [[Timestamps/<% tp.date.now("YYYY", -1) %>/<% tp.date.now("MM-MMMM", -1) %>/<% tp.date.now("YYYY-MM-DD-dddd", -1) %>|Yesterday]] | [[Timestamps/<% tp.date.now("YYYY", 1) %>/<% tp.date.now("MM-MMMM", 1) %>/<% tp.date.now("YYYY-MM-DD-dddd", 1) %>|Tomorrow]] >> | |
--- | |
### π Daily Questions | |
##### π Last night, after work, I... | |
- | |
##### π One thing I'm excited about right now is... | |
- | |
##### π One+ thing I plan to accomplish today is... | |
- [ ] | |
##### π One thing I'm struggling with today is... | |
- | |
--- | |
# π 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 | |
``` |
Hi there, thanks for sharing. I just ran into the same issue as @1artist with the parsing error. Looks like I needed to enable a few extra flags to fix the template. Hope this helps. Cheers π
@Pdfulkar it looks like Templater is not properly executing to turn the template into a note. For one-offs, you can use the command palette to trigger Templater: Replace templates in the active file
or make sure your settings are adjusted so that Templater runs when you create a new note from a template.
@Pdfulkar it looks like Templater is not properly executing to turn the template into a note. For one-offs, you can use the command palette to trigger
Templater: Replace templates in the active file
or make sure your settings are adjusted so that Templater runs when you create a new note from a template.
Yup Now It's Working As it should be
thanks @dannberg
@ianvg you are correct. I have a separate page called
+Daily Notes
that's basically the MOC for my daily notes. In it, I just have a dataview table that lists all my Daily Notes. I never actually use this page, though...Instead, it's more useful for the Graph view. If you're viewing your Graph, and you have this
+Daily Notes
page on every Daily Note, that+Daily Notes
node will be be large and easy to spot. It's basically a single page linking all related notes togehter.Due to this, it's more style instead of function, at least for me. Nothing more to it than that.