Free web template demo

This webpage is a demonstration of free web template designed for Ramui webblog version - 3. To use this web template,

  1. Download zip file;
  2. Unpack / unzip the package;
  3. Upload the template folder into your_blog_root/fw_blog/templates/ folder;
  4. Set file permission to 0644 or 644;
  5. From your admin control panel click on the settings icon;
  6. In "default style" option choose the folder name you have just uploaded and save the settings.

Sample code block

Below I write few lines of sample code for demonstration.

Code | Download
//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>&nbsp;
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'about.html'; ?>">About</a>&nbsp;
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'contact.html'; ?>">Contact</a>&nbsp;
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'sitemap.html'; ?>">Sitemap</a>&nbsp;
<a href="<?php echo 'http://'.$_SERVER['HTTP_HOST'].fw_get_docroot().'terms-of-use.html'; ?>">Terms of use</a>&nbsp;
<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>
Comment:

Your comment