# Notes for <% tp.date.now("YYYY-MM-DD") %>
## 📝 1. Tasks
```tasks
description includes #ticktick
description includes 🔼
limit 5
short mode
show tree
hide backlinks
```
```tasks
description includes #ticktick
description does not include 🔼
limit 5
short mode
hide backlinks
```
## 📆 2. Schedule
```dataview
table start-time as "Start", end-time as "End", location as "Location"
from "Extras/Events"
where date(start-time) = date(today)
sort start-time asc
```
---
# 3. Lectures
```dataview
list
from "/Lectures"
where date(today) = date(this.file.day)
sort file.date asc
```
---
# 4. Health
_(Track your meals for the day)_
```dataview
table Date, Steps, Calories as "Calories (kcal)", Weight as "Weight (kg)"
from "Health"
where file.name = "GoogleFitData"
sort Date desc
limit 1
```
mood:
---
# 5. Notes created today
```dataview
list
from ""
where date(today) = date(this.file.day)
sort file.name asc
```
# 6. Time Spent
_(Automatically logged via Toggl Integration)_
```toggl
list
FROM <% tp.file.title %> TO <% tp.file.title %>
```
---
# 7. Plans for Tomorrow/Tasks for Tomorrow
_(Write down plans and tasks for the next day)_
---
# 8. Thoughts
```dataview
list
from "/Zettelkasten"
where date(today) = date(this.file.day)
sort file.name asc
```