Site:Frontend:BuildingBlocks
From Metrixstream
Revision as of 11:17, 1 October 2011 by MetrixAdmin (Talk | contribs)
Introduction
The following are the building blocks to create your website: pages, page includes, modules, and static resources.
Pages
Pages are the most basic requirement for building a site. A page consists of the HTML necessary to display your page. Pages have the ability to reference the template engine, but this is entirely optional.
Example: Create a "Hello World" page
- Create a new Site by clicking Add > Site and enter a site name.
- Click on the pages tab, click Add Page, and choose a name for your page.
- Enter the following HTML and click save.
<html> <head> <title>This is an example page.</title> </head> <body> HELLO WORLD </body> </html>