# CMS Architecture ``` codepress/ ├── cms/core/ # Core engine │ ├── class/ # CodePressCMS, ThemeManager, Logger, Analytics │ ├── plugin/ # PluginManager, CMSAPI, AdminPluginAPI │ ├── config.php # Config loader │ └── index.php # Bootstrap ├── admin/ # Admin console │ ├── config/ # app.php, admin.json │ ├── src/ # AdminAuth │ └── theme/default/views/ # Twig templates ├── themes/ # Themes (default, demo, ...) ├── plugins/ # Plugins (Dashboard, HTMLBlock, Navigation, ...) ├── content/ # Content files (.md, .php, .html) ├── language/ # Language files (nl/, en/, de/) ├── guide/ # Guides (nl/, en/) ├── public/ # Web root │ ├── index.php # Website entry point │ └── admin.php # Admin entry point + router ├── config.json # Site configuration └── version.php # Version info ```