WebsiteStudio is a platform runs on plain PHP with SQLite — no frameworks, no Composer. Learn the WebsiteStudio internals, generated site structure, and key architectural decisions.
your-site/
├── index.php # Homepage
├── about.php # About page (and any other pages)
├── submit.php # Form handler
├── mcp.php # MCP server endpoint
├── _partials/ # Shared includes (header, nav, footer, schema)
├── assets/
│ ├── css/ # style.css (design tokens) + tailwind.css
│ ├── js/ # Vanilla JavaScript (no frameworks)
│ ├── images/ # Uploaded images
│ ├── data/ # Structured data (JSON)
│ ├── icons/ # Lucide SVG icons (hydrated from <i data-lucide> placeholders)
│ └── library/ # Built-in image library
├── sitemap.xml # Generated on publish
├── robots.txt # Generated on publish
└── llms.txt # AI discovery map