A minimal, file-based PHP framework for publishing content that will work for decades. **Just enough, nothing more.** FolderWeb applies minimal PHP to enable modern conveniences while remaining maintainable for years or decades. No frameworks, no build tools, no JavaScript—just HTML, PHP 8.3+, and CSS. This is not a CMS with an admin panel, not a single-page application.
Any folder without subdirectories is a **page-type folder**. All `.md`, `.html`, and `.php` files in that folder render together as a single page in **alphanumerical order**.
This allows you to:
- Break long content into manageable sections
- Mix file formats freely (Markdown, HTML, PHP)
- Reorder sections by renaming files
- Include dynamic PHP content alongside static content
**Example:**
```
/content/
docs/
00-introduction.md
01-setup.md
02-advanced.html
03-examples.php
```
All four files render as one page at `/docs/`, in that order.
### Folder Types
FolderWeb automatically determines how to render folders:
- **Page-type folder** (no subdirectories) → Renders all content files as a single page
- **Article-type folder** (has subdirectories) → Shows list view with links to subdirectories