16 lines
519 B
Markdown
16 lines
519 B
Markdown
|
|
## Core Concepts
|
||
|
|
|
||
|
|
### File-Based Routing
|
||
|
|
|
||
|
|
Drop a file in a folder and it's instantly accessible at a URL matching that path. Your folder structure becomes your URL structure.
|
||
|
|
|
||
|
|
### Multiple Content Types
|
||
|
|
|
||
|
|
- **Markdown** - Write in `.md` files, automatically converted to HTML
|
||
|
|
- **HTML** - Pure HTML files for complete control
|
||
|
|
- **PHP** - Dynamic content when you need it
|
||
|
|
|
||
|
|
### Multi-File Pages
|
||
|
|
|
||
|
|
Any folder without subfolders renders all content files (`.md`, `.html`, `.php`) in alphanumerical order. Mix formats freely!
|