Files

57 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2026-01-03 10:23:05 -06:00
---
cssclasses:
- homepage-callouts
---
<div class="header-container">
<h1>Zwei</h1>
<p>Your Second Brain</p>
</div>
<div class="main-container">
<div class="card">
<h2>Navigation</h2>
<div class="button-grid">
<a href="obsidian://open?path=01%20-%20Projects%2F">Projects</a>
<a href="obsidian://open?path=02%20-%20Areas%2F">Areas</a>
<a href="obsidian://open?path=03%20-%20Resources%2F">Resources</a>
<a href="obsidian://open?path=04%20-%20Permanent%2F">Permanent</a>
<a href="obsidian://open?path=05%20-%20Fleeting%2F">Fleeting</a>
<a href="obsidian://open?path=06%20-%20Daily%2F">Daily</a>
</div>
</div>
<div class="card">
<h2>Create New</h2>
<div class="button-grid">
<a href="obsidian://new?template=99%20-%20Meta%2F00%20-%20Templates%2F(TEMPLATE)%20Daily.md&path=06%20-%20Daily%2F">New Daily Note</a>
<a href="obsidian://new?template=99%20-%20Meta%2F00%20-%20Templates%2F(TEMPLATE)%20Unique.md&path=05%20-%20Fleeting%2F">New Fleeting Note</a>
</div>
</div>
<div class="card">
<h2>Active Projects</h2>
```dataview
LIST
FROM "01 - Projects"
SORT file.name asc
```
</div>
<div class="card">
<h2>Recently Modified</h2>
```dataview
TABLE WITHOUT ID file.link as "File", file.mtime as "Modified"
FROM ""
WHERE file.path != this.file.path
SORT file.mtime DESC
LIMIT 10
```
</div>
</div>
> [!IMPORTANT]
> This page requires the **Dataview** and **Templater** plugins to be installed and enabled. If the content below the cards does not render, please ensure these plugins are working correctly and restart Obsidian.