---------------------------------------------------------------------
Note: You can also use the below to make a macro with another editor.
---------------------------------------------------------------------

{URL}
Inserts your sites url

------------
Replacement variable is:
<?php echo XOOPS_URL;?>
---------------------------------------------------------------------
{BANNER}
Shows banners if banners are on

------------
Replacement variable is:
<?php if ($xoopsConfig["banners"]) { showbanner(); }?>
---------------------------------------------------------------------

{TITLE}
Title of various stuff

------------
Replacement variable is:
<?php echo $title;?>
---------------------------------------------------------------------

{CONTENT}
Content of blocks & centerposts

------------
Replacement variable is:
<?php echo $content;?>
---------------------------------------------------------------------

{POSTEDBY}
The words: Posted by (see language file)

------------
Replacement variable is:
<?php echo _TH_POSTEDBY;?>
---------------------------------------------------------------------

{AUTHOR}
The name of the author of the article

------------
Replacement variable is:
<?php echo $poster;?>
---------------------------------------------------------------------

{ON}
The word: on (see language file)

------------
Replacement variable is:
<?php echo _TH_ON;?>
---------------------------------------------------------------------

{DATE}
Date the article was published

------------
Replacement variable is:
<?php echo $time;?>
---------------------------------------------------------------------

{COUNTER}
Times the article was read

------------
Replacement variable is:
<?php echo $counter;?>
---------------------------------------------------------------------

{READS}
The word: reads (see language file)

------------
Replacement variable is:
<?php echo _TH_READS;?>
---------------------------------------------------------------------

{IMG}
The topic image associated to the article

------------
Replacement variable is:
<?php echo $timglink;?>
---------------------------------------------------------------------

{TEXT}
The content of the article

------------
Replacement variable is:
<?php echo $thetext;?>
---------------------------------------------------------------------

{ADMINLINK}
The admin edit link

------------
Replacement variable is:
<?php echo $adminlink;?>
---------------------------------------------------------------------

{MORELINK}
The read more link

------------
Replacement variable is:
<?php echo $morelink;?>
---------------------------------------------------------------------

{FOOTER}
Your sites footer content

------------
Replacement variable is:
<?php echo $footer;?>
---------------------------------------------------------------------


---------------------------------------------------------------------
Insert just BEFORE your left block:
<!--START LEFTBLOCK -->

------------
Replacement variable is:
<!-- 1. START: Cut & Paste this into themesidebox() -->

---------------------------------------------------------------------
Insert just AFTER your left block:
<!--END LEFTBLOCK -->

------------
Replacement variable is:
<!-- 1. END: Cut & Paste this into themesidebox() --><?php make_sidebar("left");?>

---------------------------------------------------------------------
Insert just BEFORE your news block:
<!--START NEWS -->

------------
Replacement variable is:
<!-- 5. START: Cut & Paste the above into themeheader() (</head><body> INCLUDED, but not more) --><!-- 4. START: Cut & Paste this into themenews.php, themenews() -->

---------------------------------------------------------------------
Insert just AFTER your news block:
<!--END NEWS -->

------------
Replacement variable is:
<!-- 4. END: Cut & Paste this into themenews.php, themenews() --><!-- 6. START: Cut & Paste the below into themefooter() (</body> and anything after NOT included) -->

---------------------------------------------------------------------
Insert just BEFORE your centerposts block:
<!--START CENTERPOSTS -->

------------
Replacement variable is:
<!-- 3. START: Cut & Paste this into themecenterposts() -->

---------------------------------------------------------------------
Insert just AFTER your centerposts block:
<!--END CENTERPOSTS -->

------------
Replacement variable is:
<!-- 3. END: Cut & Paste this into themecenterposts() -->

---------------------------------------------------------------------
Insert just BEFORE your right block:
<!--START RIGHTBLOCK -->

------------
Replacement variable is:
<!-- 2. START: Cut & Paste this into themesidebox_right() -->

---------------------------------------------------------------------
Insert just AFTER your right block:
<!--END RIGHTBLOCK -->

------------
Replacement variable is:
<!-- 2. END: Cut & Paste this into themesidebox_right() --><?php make_sidebar("right");?>

---------------------------------------------------------------------
