Create notes from reusable templates with dynamic placeholder replacement.
## Overview
Templates allow you to quickly create notes with predefined structures and content. Perfect for recurring note types like meeting notes, daily journals, project plans, and more.
## How to Use Templates
### 1. Create Template Files
Templates are stored in the `data/_templates/` folder as markdown files. You will need to create such folder if it doesn't exist:
```
data/
└── _templates/
├── meeting-notes.md
├── daily-journal.md
└── project-plan.md
```
### 2. Access Templates
Click the **"New"** button (or **+** on any folder) and select **"New from Template"**:
1. Choose a template from the dropdown
2. Enter a name for your new note
3. Click "Create Note"
The template will be copied with all placeholders replaced automatically!
### 3. Use Placeholders
Templates support dynamic placeholders that are replaced when you create a note:
| Placeholder | Description | Example |
|------------|-------------|---------|
| `{{date}}` | Current date | `2025-11-26` |
| `{{time}}` | Current time | `14:30:45` |
| `{{datetime}}` | Current date and time | `2025-11-26 14:30:45` |