Site Data
The core of this system is a very flexible data model that lets you build most custom content modules without touching the database.
The database largely consists of one main content table that can serve a very wide range of content types. This content table is connected to through the Content model.
Core Concepts
Connecting to the main content There are two additional models which manage the core content: Page(): this is the administrative module, so it has all of the crud capabilities ContentPage(): this is the public page object which is sent to the main instance of the...
The content Data Table
This model was developed to make building custom content driven websites as easy as possible. This was accomplished by creating one master content table that is capable of serving any form of data. The core goal here was to let the database handle data and not worry about any of...