forked from quanru/obsidian-example-lifeos
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathHOME.canvas
More file actions
9 lines (9 loc) · 2.06 KB
/
Copy pathHOME.canvas
File metadata and controls
9 lines (9 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
{
"nodes":[
{"type":"text","text":"## 💫 Areas\n> An area is a sphere of activity with a standard to be maintained over time.\n```dataviewjs\ndv.pages('\"2. Areas\"')\n .where((p) => /^2. Areas\\/[^/]*\\/README\\.md$/.test(p.file.path))\n .sort((b) => b.file.ctime, 'desc')\n .map((p, index) =>\n dv.paragraph(\n `### ${index + 1}. [[${p.file.path}|${p.file.folder.replace(\n /^2. Areas\\//,\n ''\n )}]]`\n )\n );\n\n```","id":"45f7f22634f0bb7e","x":-180,"y":-360,"width":380,"height":500,"color":"5"},
{"type":"text","text":"## 🔥 Projects\n> A project is a series of tasks linked to a goal, with a deadline.\n```dataviewjs\ndv.pages('\"1. Projects\"')\n .where((p) => /^1. Projects\\/[^/]*\\/README\\.md$/.test(p.file.path))\n .sort((b) => b.file.ctime, 'desc')\n .map((p, index) =>\n dv.paragraph(\n `### ${index + 1}. [[${p.file.path}|${p.file.folder.replace(\n /^1. Projects\\//,\n ''\n )}]]`\n )\n );\n```","id":"b78fa040a3fea1ec","x":-560,"y":-360,"width":380,"height":500,"color":"2"},
{"type":"text","text":"## 📝 Resources\n> Resources are a topic or theme of ongoing interest.\n```dataviewjs\ndv.pages('\"3. Resources\"')\n .where((p) => /^3. Resources\\/[^/]*\\/README\\.md$/.test(p.file.path))\n .sort((b) => b.file.ctime, 'desc')\n .map((p, index) =>\n dv.paragraph(\n `### ${index + 1}. [[${p.file.path}|${p.file.folder.replace(\n /^3. Resources\\//,\n ''\n )}]]`\n )\n );\n```","id":"9ec2492e84f151f4","x":-560,"y":140,"width":380,"height":480},
{"type":"text","text":"## 📦 Archives\n> The archive is inactive items from the other three categories.\n```dataviewjs\ndv.pages('\"4. Archives\"')\n .where((p) => /^4. Archives\\/[^/]*\\/README\\.md$/.test(p.file.path))\n .sort((b) => b.file.ctime, 'desc')\n .map((p, index) =>\n dv.paragraph(\n `### ${index + 1}. [[${p.file.path}|${p.file.folder.replace(\n /^4. Archives\\//,\n ''\n )}]]`\n )\n );\n```","id":"528e809ab3b9cd3c","x":-180,"y":140,"width":380,"height":480}
],
"edges":[]
}