A lightweight, open-source PHP blogging platform. No frameworks, no dependencies, no complexity. Just upload and go.
That's the entire CMS. For comparison:
Visual editor or Markdown — switch on any post. Zero external dependencies.
Child themes inherit templates from the parent. Override only what you need. Install via ZIP.
Hook-based architecture. Inject content, register routes, replace components — without editing core files.
Prepared statements, CSRF protection, XSS-safe Markdown parser, bcrypt password hashing.
Sidebar navigation, flyout menus, appearance customiser, cache management, media library.
No command line. No package managers. Upload to your host, run the installer, start writing.
Built-in version tracking applies schema changes automatically when you update.
Light and dark themes included. Build your own with CSS-only overrides and template inheritance.
Clean URLs, Open Graph tags, XML sitemap, RSS feed, configurable meta descriptions.
A module is just a folder with two files. Register hooks, declare settings, and the admin panel generates the configuration UI automatically.
Read the developer docs// boot.php Modules::on('footer', function () { return '<script src="track.js"></script>'; }); Modules::on('routes', function (&$routes) { $routes['/my-page'] = [ 'controller' => 'MyCtrl', 'action' => 'index', ]; });
Core 3 runs on any PHP host with MySQL. Download it, run the installer, and start publishing.