Theme Introduction
We’ve created a super simple way to design themes. Single php file for complete template design.
A blog template consists of header, sidebar, content and footer. We’ve similar structure.
There are 4 div ids for different sections.
<div id="header"> </div> <!--header --> <div id="sidebar"> </div> <!--sidebar --> <div id="main"> </div> <!--content --> <div id="footer"> </div> <!--footer -->
- header : header id
- sidebar: sidebar id
- main : content id
- footer: footer id
You can change these id name keeping inside data as relative position.
There are four major sections. We’ll talk each segment one by one.
To know where theme location is please see Project overall MVC structure