Redmatrix Documentation

Creating Web Pages

Red enables users to create static webpages.  To activate this feature, enable the web pages feature in your Additional Features section.

Once enabled, a new tab will appear on your channel page labelled "Webpages".  Clicking this link will take you to the webpage editor.
Pages will be accessible at mydomain/page/username/pagelinktitle

The "page link title" box allows a user to specify the "pagelinktitle" of this URL.  If no page link title is set, we will set one for you automatically, using the message ID of the item.  

Beneath the page creation box, a list of existing pages will appear with an "edit" link.  Clicking this will take you to an editor, similar to that of the post editor, where you can make changes to your webpages.


Using Blocks

Blocks can be parts of webpages. The basic HTML of a block looks like this

    <div>
        Block Content
    </div>



If a block has text/html content type it can also contain menu elements. Sample content of

    <p>HTML block content</p>
    [menu]menuname[/menu]


will produce HTML like this

    <div>
        <p>HTML block content</p>
        <div>
            <ul>
                <li><a href="#">Link 1</a></li>
                <li><a href="#">Link 2</a></li>
                <li><a href="#">Link 3</a></li>
            </ul>
        </div>
    </div>



Via the $content macro a block can also contain the actual webpage content. For this create a block with only

    $content

as content.

To make a block appear in the webpage it must be defined in the page layout inside a region.

    [region=aside]
        [block]blockname[/block]
    [/region]



The block appearance can be manipulated in the page layout.

Custom classes can be assigned

    [region=aside]
        [block=myclass]blockname[/block]
    [/region]


will produce this HTML

    <div class="myclass">
        Block Content
    </div>



Via the wrap variable a block can be stripped off its wrapping <div></div> tag

    [region=aside]
        [block][var=wrap]none[/var]blockname[/block]
    [/region]


will produce this HTML

    Block Content




Return to the Main documentation page