Changed folder naming.

This commit is contained in:
Alexander Kogutkiewicz
2025-09-21 22:26:43 -05:00
parent 837d0bb6ac
commit ac8a9e293b
114 changed files with 139 additions and 62 deletions

View File

@@ -0,0 +1,43 @@
### 📇 Contacts
_(rolodex card — perfect for people info)_
---
### 📅 Meetings
```dataview
TABLE WITHOUT ID file.link as Meeting
FROM ""
WHERE type = "meeting" AND project = this.file.link AND date >= date(today) AND date <= date(today) + dur(30 days)
SORT date ASC
```
---
### 📝 Notes
```dataview
TABLE WITHOUT ID file.link as Note
FROM ""
WHERE type = "note" AND project = this.file.link
SORT date ASC
```
---
### ✅ Tasks
_(green checkmark — clean and motivating)_
---
### 📂 Documents
```dataview
TABLE WITHOUT ID file.link as Document
FROM ""
WHERE contains(file.folder, "4. Docs")
SORT date ASC
```