[b]Creating Web Pages[/b] 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. [b]Using Blocks[/b] Blocks can be parts of webpages. The basic HTML of a block looks like this [code]
HTML block content
[menu]menuname[/menu] [/code] will produce HTML like this [code] [/code] Via the $content macro a block can also contain the actual webpage content. For this create a block with only [code] $content [/code]as content. To make a block appear in the webpage it must be defined in the page layout inside a region. [code] [region=aside] [block]blockname[/block] [/region] [/code] The block appearance can be manipulated in the page layout. Custom classes can be assigned [code] [region=aside] [block=myclass]blockname[/block] [/region] [/code] will produce this HTML [code]