Help

How can I select template?
How can I create custom template?

How can I select template?
Go to "Select/Edit Template" page and select template you like and then click "Select Template" button. Before you start with "My custom template" read "How can I create custom template?"

"How can I create custom template?"
Editing custom template for your site is easy and requires only a basic knowledge of HTML and if you want to use "Edit content" page after creating your html code you must know 7 predefined variables. Go to "Select/Edit Template" page and select "My Custom Template". Now you can edit your custom template. Insert your code into "Insert your html code here" textbox and click "Select Template" button. If you want to use "Edit Content" page you can use these predefined variables:

  • {$title} for "Title" field at "Edit Content" page. Use it in the TITLE tag in your HEAD tag.
  • {$keywords} for "Keywords" field at "Edit Content" page. Use it in the META NAME="keywords" tag
  • {$description} for "Description" field at "Edit Content" page. Use it in the META NAME="description" tag
  • {$headerTitle} for "Your site name" field at "Edit Content" page.
  • {$headerSubtitle} for "Your Subname" field at "Edit Content" page.
  • {$content} for "Content" visual editor field at "Edit Content" page.
  • {$footerContent} for "Footer" visual editor field at "Edit Content" page.

If you don't use these variables, fields on the "Edit content" page will be not active, but you can still edit your site at "Select/Change Template" page. You can also use CSS stylesheet on your page. Insert your CSS code into "Insert your css code here" textbox and once you click "Select Template" button the <style>@import url(style.css);</style> directive will be inserted into your HTML code. Example custom file with predefined variables:

<html>
    <head>
        <title>{$title}</title>
        <meta http-equiv="content-type" content="text/html;charset=utf-8" />
        <meta name="keywords" content="{$keywords}" />
        <meta name="description" content="{$description}" />
        <style>@import url(style.css);</style>
    </head>
    <body>
        <h1>{$headerTitle}</h1>
        <h2>{$headerSubtitle}</h2>
        <div id="content">{$content}</div>
        <div id="footer">{$footerContent}</div>
    </body>
</html>

If you want to use image uploaded with the "Upload your images here" control you need to enter the image relative URL from the File Name column of the file table into your SRC attribute of the IMG tag. For example:
<img src="images/myFile.jpg" />