Highlights

BWPMS Designer Manual

This Manual is intented to the Designers that want to implement sites over BWPMS plataform.

BWPMS Manual

This page is the BWPMS Manual index.

Advertise

News

Add an URL

This page explains how to add an URL to a BWPMS Page.

Pantas - Papelaria e Artigos de Escritório

Pantas is a office store. They sell all the biggest office product' brands, and are one of the biggest Dymo resellers in Portugal.

BWPMS Designer Manual

This Manual is intented to the Designers that want to implement sites over BWPMS plataform.

Suport and Info

Soon we will create mailing-lists and maybe a forum or a blog, and this is the place where they will be announced.
For now, use the Contact us form. Thanks.

Still the templates

Let's take a quick look at this example template and see how complete it can be.

<html>
  <head>
    <title><?=sitename?> - <?=stitle?></title>
    <link rel="stylesheet" type="text/css" href="/styles.css"/>
  </head>
  <body>
    <div id="header"><?header?></div>
    <div id="lateral><?sidebar?></div>
    <div id="main"><?main?></div>
    <div id="footer"><?footer?></div>
  </body>
</html>


This could easly be the main template for a regular site, with 4 main blocks. From the start.

<html>, <head> and <title> are normal HTML tags. Before the <html> tag you could insert yet the xml DOCTYPE to your document as recomended by the actual (X)HTML best pratices.

<?=sitename?> and <?=title?> are the first BWPMS specific tags in this example. They represent, respectivly, the sitename (BWPMS.com, in this site example), and the page title (it's called stitle from Story Title, the page title I had in mind when I defined the variable name).

Then you have more HTML and the <?header?>, <?sidebar?>, <?main?> and <?footer?> tags, that are placeholder where modules will be inserted. See module's placeholder for more information on defining the modules for each placeholder.