Site:Frontend:BuildingBlocks

From Metrixstream
(Difference between revisions)
Jump to: navigation, search
(Created page with "== Introduction == The following are the building blocks to create your website: pages, page includes, modules, and static resources. == Pages == Pages are the most basic requ...")

Revision as of 11:17, 1 October 2011

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

  1. Create a new Site by clicking Add > Site and enter a site name.
  2. Click on the pages tab, click Add Page, and choose a name for your page.
  3. Enter the following HTML and click save.
<html>
<head>
 <title>This is an example page.</title>
</head>
<body>
  HELLO WORLD
</body>
</html>
Personal tools