This webpage is a demonstration of free web template designed for Ramui webblog version - 3. To use this web template,
Below I write few lines of sample code for demonstration.
//Code in HTML file.
<tr><td id="topmenu">
<a href="#">Home</a><a href="#">About</a><a href="#">Contact</a>
</td></tr>
//Replace with the following lines of code.
<tr><td id="topmenu">
<?php
$topmenu=$fw_db->get_addon("topmenu");
if(!empty($topmenu)){echo $topmenu;}
else{ ?>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST']; ?>">Home</a>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'about.html'; ?>">About</a>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'contact.html'; ?>">Contact</a>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'sitemap.html'; ?>">Sitemap</a>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'terms-of-use.html'; ?>">Terms of use</a>
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'fw_blog/atom.php'; ?>" target="_blank" style="color:#aa3333;">Atom</a>
<?php }?>
</td></tr>