Articles

Building a theme for TokyoCMS

A TokyoCMS theme is made of three folders: themes/my-theme/ ├── layouts/ # the page skeleton (base.html) ├── partials/ # header, footer, menu... ├── templates/ # one template per content type └──…

Why a database-free CMS?

Most traditional content management systems rely on a relational database. For a lot of sites, that's unnecessary complexity. The advantages of flat-file Portability : the whole site fits in a folder, versionable with Gi…