Facebook
From roboter5123, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 340
  1. ---
  2. <%* moment.locale("de") -%>
  3. <%* tp.file.rename("Daily Note " + tp.date.now("YYYY-MM-DD")) -%>
  4. tags: <% tp.file.creation_date('dddd').toLowerCase() %>
  5. creation date: <% tp.file.creation_date() %>
  6. modification date: <% tp.file.last_modified_date("Do MMMM YYYY HH:mm:ss") %>
  7. daily score:
  8. cssclasses: daily
  9. ---
  10. [[<% "Daily Note " + tp.date.now("YYYY-MM-DD", -1) %>|<Gestern]] | | [[<% "Daily Note " + tp.date.now("YYYY-MM-DD", +1) %>|Morgen>]]
  11. # Log:
  12.  
  13. - <% tp.file.cursor() %>
  14. # Notes created Today
  15. ```dataview
  16. List FROM "" WHERE file.cday = date("<%tp.date.now("YYYY-MM-DD")%>") SORT file.ctime asc
  17. ```
  18. # Notes modified Today
  19. ```dataview
  20. List FROM ""
  21. WHERE file.mday = date("<%tp.date.now("YYYY-MM-DD")%>") and
  22. file.cday != date("<%tp.date.now("YYYY-MM-DD")%>")
  23. SORT file.ctime asc
  24. ```